Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ApplicationImporter Sınıfı Yapımı #29

Open
gdemir opened this issue Mar 14, 2019 · 1 comment
Open

ApplicationImporter Sınıfı Yapımı #29

gdemir opened this issue Mar 14, 2019 · 1 comment

Comments

@gdemir
Copy link
Member

gdemir commented Mar 14, 2019

Sınıf yüklerken tüm sınıfların eklenmesi mantıklı gelmiyor.

Bunla ilgili güzel bir kaynak var : spl_autoload_register

@gdemir gdemir changed the title Sınıf Yükleme: Sınıf Yükleme Mar 14, 2019
@gdemir
Copy link
Member Author

gdemir commented Mar 15, 2019

Şöyle bir sınıf yazdım ancak çok sınıf kullanılmadığından gerekli olur mu bilemedim ?

<?php

class ApplicationImporter {

  public static function lib($classname) {
    $classpath = "lib/{$classname}.php";
    self::_import($classpath);
  }

  public static function model($classname) {
    $classpath = "app/model/{$classname}.php";
    self::_import($classpath);
  }

  public static function mailers($classname) {
    $classpath = "app/mailers/{$classname}.php";
    self::_import($classpath);
  }

  private static function _import($classpath) {
    if (is_readable($classpath)) {
      require_once $classpath;
    }
  }

}
?>

@gdemir gdemir changed the title Sınıf Yükleme ApplicationImporter: Sınıf Yükleme Apr 18, 2019
@gdemir gdemir changed the title ApplicationImporter: Sınıf Yükleme ApplicationImporter Sınıfı Yapımı Apr 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant