PHP Global, iç içe / miras autoload

0 Cevap php

PHP 5.3.3-pl1-gentoo (cli) (built: Aug 17 2010 18:37:41)

Herkese selam, ben projenin ana dosyası (index.php) basit bir autoloader kullanın:

require_once("./config.php");
require_once("./app.php");
require_once("./../shared/SqlTool.php");

function __autoload($className) {
    $fn = 'file-not-exists-for-{$className}';
    if (file_exists("./specific/php/{$className}.php")) { $fn = "./specific/php/{$className}.php"; } else
     { $fn = "./../shared/{$className}.php";}
    require_once($fn);
}

$sql = new SqlHD(); // class SqlHD, in ./specific/php/SqlHD.php extends SqlTool
$web = new HTMLForm($sql); // class HTMLForm in HTMLForm.php
$app = new App($sql, $web); // class App in App.php
$app->Main();

Sorun: kendisi tarafından SqlTool.php bulamıyorum çünkü olmadan require_once("./../shared/SqlTool.php");, script, SqlHD.php icra edemez, ve nedense o ana dosyasında tanımlanan özdevinimli_yükle rutin kullanır değildir.

Ben bu çalıştı:

spl_autoload_register(__NAMESPACE__ .'\Test::load');

class Test {
    static public function load($className){
        $fn = 'file-not-exists-for-{$className}';
        if (file_exists("./specific/php/{$className}.php")) { $fn = "./specific/php/{$className}.php"; } else
         { $fn = "./../shared/{$className}.php}";}
        echo realpath($fn);//"$curRealDir Filename $fn\n";
        echo "\n";
        require_once($fn);
    }   
}

Eh,

PHP Warning: require_once(./../shared/SqlTool.php}): failed to open stream: No such file or directory in /home/beep/work/php/hauthd/index.php on line 20 PHP Fatal error: require_once(): Failed opening required './../shared/SqlTool.php}' (include_path='.:/usr/share/php5:/usr/share/php') in /home/beep/work/php/hauthd/index.php on line 20

So it doesn't reacts to any request from extended class.

Son saniye fikir: Her bir dosya için spl_autoload_register koydu. Ancak, kendisini direktife "uzanır" için koyamazsınız!

P.S. May rewrite SqlTool.php using Factory pattern so it would automatically return an instance of project-specifc class, but it seems to be not a best way, or it is..?

0 Cevap