问题?
引导程序(Autoloader)似乎没有正常工作,或者我遗漏了一些东西。这是简化的代码。
下面的代码返回
类“骨架”不存在。
在index.php文件上。
index.php
<?php
include 'bootloader.php';
use Skeleton\Html\LoginHeader;
$tool = new Skeleton/Html/LoginHeader();bootloader.php
<?php
function Boot($className) {
$fileName = '';
$namespace = '';
// Sets the include path as the "src" directory
$includePath = dirname(__FILE__).DIRECTORY_SEPARATOR.'src';
if (false !== ($lastNsPos = strripos($className, '\\'))) {
$namespace = substr($className, 0, $lastNsPos);
$className = substr($className, $lastNsPos + 1);
$fileName = str_replace('\\', DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR;
}
$fileName .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';
$fullFileName = $includePath . DIRECTORY_SEPARATOR . $fileName;
if (file_exists($fullFileName)) {
require $fullFileName;
} else {
echo 'Class "'.$className.'" does not exist.';
}
}
spl_autoload_register('Boot'); // Registers the autoloadersrc/Skeleton/Html/LoginHeader.php
<?php
namespace Skeleton\Html;
class LoginHeader () {
echo "<h1>Login Header OK!</h1>";
}发布于 2016-11-13 04:40:22
这里有几个问题:
( 1)这一行/一节不对:
class LoginHeader () {应:
class LoginHeader
{
public function __construct()
{
echo "<h1>Login Header OK!</h1>";
...etc2)你没有正确分配你的班级。你有:
$tool = new Skeleton/Html/LoginHeader();应该是反斜杠:
--------v----v
$tool = new Skeleton\Html\LoginHeader();一旦修复了反斜杠,就会在类页面上得到一个语法错误,就像前面提到的那样,但是自动加载程序本身工作正常。
https://stackoverflow.com/questions/40569248
复制相似问题