PSR-0规范1.命名空间必须与绝对路径一致 2.类名首字母必须大写 3.除入口文件外,其它.php必须只有一个类。
1.全部使用命名空间
2.所有PHP文件必须自动载入,不能有include/require
3. 单一入口
目录
控制器中的index.php
<?phpnamespace App\Controller\Home;class Index{ static function test() { echo '我是控制器'; } }
Loader.php
<?php/** * User: baldy * CreateTime: 2018/2/27 下午5:27 * Description: */namespace IMooc;class Loader{ static function autoload($class) { $file = BASEDIR.'/'.str_replace('\\','/',$class).'.php'; require $file; } }
Object1.php
<?phpnamespace IMooc;class Object1{ static function test(){ echo "我是Object"; } }
index.php
<?phpdefine('BASEDIR',__DIR__); include BASEDIR . '/IMooc/Loader.php'; spl_autoload_register('\\IMooc\\Loader::autoload'); IMooc\Object1::test(); App\Controller\Home\Index::test();
我是Object我是控制器
相关推荐:
PHP的PSR-0标准利用namespace来做autoloading
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!