php autoloader.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php autoloader.php相关的知识,希望对你有一定的参考价值。
<?php
namespace Mizner\Example;
spl_autoload_register( function ( $class ) {
$prefix = __NAMESPACE__; // change this to your root namespace
$base_dir = PATH . 'classes'; // make sure this is the directory with your classes
$len = strlen( $prefix );
if ( strncmp( $prefix, $class, $len ) !== 0 ) {
return;
}
$relative_class = substr( $class, $len );
$file = $base_dir . str_replace( '\\', '/', $relative_class ) . '.php';
if ( file_exists( $file ) ) {
require_once $file;
}
} );
以上是关于php autoloader.php的主要内容,如果未能解决你的问题,请参考以下文章
在 Laravel 中配置 Autoloader.php [重复]
使用供应商目录中的 autoloader.php 自动加载无法正常工作
workerman怎样统计框架里的函数执行情况
如何在php后端及时推送消息给客户端
如何在php后端及时推送消息给客户端
workerman 的属性