當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Autoload::addPsr4方法代碼示例

本文整理匯總了PHP中Autoload::addPsr4方法的典型用法代碼示例。如果您正苦於以下問題:PHP Autoload::addPsr4方法的具體用法?PHP Autoload::addPsr4怎麽用?PHP Autoload::addPsr4使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Autoload的用法示例。


在下文中一共展示了Autoload::addPsr4方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: loadMappedFile

    }
    protected function loadMappedFile($prefix, $relative_class)
    {
        if (isset($this->prefixes[$prefix]) === false) {
            return false;
        }
        foreach ($this->prefixes[$prefix] as $base_dir) {
            $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
            if ($this->requireFile($file)) {
                return $file;
            }
        }
        return false;
    }
    protected function requireFile($file)
    {
        if (file_exists($file)) {
            require $file;
            return true;
        }
        return false;
    }
}
$loader = new Autoload();
$loader->register();
$loader->addPsr4('Bitphp', '../bitphp/src');
$loader->addPsr4('Models', '../app/models');
$loader->addPsr4('Views', '../app/views');
$loader->addPsr4('Controllers', '../app/controllers');
$loader->addPsr4('Components', '../app/components');
return $loader;
開發者ID:bitphp,項目名稱:framework,代碼行數:31,代碼來源:autoload.php

示例2: requireFile

        // never found it
        return false;
    }
    /**
     * If a file exists, require it from the file system.
     * 
     * @param string $file The file to require.
     * @return bool True if the file exists, false if not.
     */
    protected function requireFile($file)
    {
        #echo $file; exit;
        if (file_exists($file)) {
            require $file;
            return true;
        }
        return false;
    }
}
$bitphp_loader = new Autoload();
$bitphp_loader->register();
$bitphp_loader->addPsr4('Bitphp\\Exceptions', 'bitphp/bitphp-exceptions/src');
$bitphp_loader->addPsr4('Bitphp\\Core', 'bitphp/bitphp-core/src');
$bitphp_loader->addPsr4('Bitphp\\Base', 'bitphp/bitphp-base/src');
$bitphp_loader->addPsr4('Bitphp\\Modules', 'bitphp/bitphp-modules/src');
$bitphp_loader->addPsr4('App\\Models', 'app/models');
$bitphp_loader->addPsr4('App\\Controllers', 'app/controllers');
$bitphp_loader->addPsr4('App\\Migrations', 'app/migrations');
$bitphp_loader->addPsr4('App\\Events', 'app/events');
$bitphp_loader->addPsr4('App\\Listeners', 'app/listeners');
return $bitphp_loader;
開發者ID:vickoman,項目名稱:framework,代碼行數:31,代碼來源:self_autoload.php


注:本文中的Autoload::addPsr4方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。