php设计模式

php设计模式:命名空间,类的自动加载,SPL标准库(理解),PSR_0基础框架

php设计模式_第1张图片
php设计模式_第2张图片
php设计模式_第3张图片
php设计模式_第4张图片
php设计模式_第5张图片
php设计模式_第6张图片
php设计模式_第7张图片


当实例化类的时候,自己执行这个方法

// function __autoload($class){

//          include  __DIR__.'/'.$class.'.php';

// }

类的自动加载,当实例化类的时候会找里面的方法('autoload')

// spl_autoload_register('autoload');

// function  autoload($class){

//          include  __DIR__.'/'.$class.'.php';

// }

php设计模式_第8张图片
php设计模式_第9张图片
php设计模式_第10张图片
php设计模式_第11张图片
php设计模式_第12张图片
php设计模式_第13张图片

你可能感兴趣的:(php设计模式)