PHP 自动加载的简单实现(推荐)
基于psr的规范,使用命名空间和spl_autoload_register()来实现自动加载
文件结构:
|--Api
|--Account.php
|--User.php
|--Service
|--Login.php
|--User.php
|--Application.php
Application.php
<?php use ApiUser; use ServiceUser as User2; class Application{ public static function main(){ self::registe(); new User(); new User2(); } public static function registe(){ spl_autoload_register("Application::loadClass"); } public static function loadClass($class){ $class=str_replace('\', '/', $class); $class="./".$class.".php"; require_once $class; } } Application::main();
ApiUser.php
<?php namespace Api; use ServiceLogin; class User{ public function __construct(){ echo "User类<br/>"; new Login(); new Account(); } }
ApiAccount.php
<?php namespace Api; class Account{ public function __construct(){ echo "Account类<br/>"; } }
ServiceLogin.php
<?php namespace Service; class Login{ public function __construct(){ echo "Login类<br/>"; } }
ServiceUser.php
<?php namespace Service; class User{ public function __construct(){ echo "Service下的User类<br/>"; } }
结果:
以上这篇PHP 自动加载的简单实现(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持积木网。
php网页版聊天软件实现代码
本文实例为大家分享了php匿名聊天室的具体实现代码,供大家参考,具体内容如下1.index.htmlhtmlheadtitle聊天室/titlemetacharset="utf-8"/linkhref="http://libs.baidu.com/
php+jquery+html实现点击不刷新加载更多的实例代码
基本原理:页面载入时,jQuery向后台请求数据,PHP通过查询数据库将最新的几条记录显示在列表页,在列表页的底部有个更多链接,通过触发该链接,
PHP请求Socket接口测试实例
使用php读取socket接口的数据,通过php传递请求方法和请求参数,得到返回结果PHP文件:phpclassTest{constIP='127.0.0.1';constport=10003;publicstaticfunctionmain(){header("Co