Home  >  Article  >  Backend Development  >  Simple implementation of PHP autoloading

Simple implementation of PHP autoloading

不言
不言Original
2018-06-01 14:09:091093browse

这篇文章主要介绍了关于PHP 自动加载的简单实现,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

基于psr的规范,使用命名空间和spl_autoload_register()来实现自动加载

文件结构:

|--Api
  |--Account.php
  |--User.php
|--Service
  |--Login.php
  |--User.php

|--Application.php

Application.php

Api\User.php

";
    new Login();
    new Account();
  }
}

Api\Account.php

";
  }
}

Service\Login.php

";
  }
}

Service\User.php

";
  }
}

结果:

 

相关推荐:

PHP自动识别当前使用移动终端

PHP自动加载autoload和命名空间方法小结

The above is the detailed content of Simple implementation of PHP autoloading. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn