我得到這個非常糟糕的錯誤。我試圖從PHP.net複製示例類。班級工作,但我似乎無法讓它包括正確的。我的索引文件包含users.class.php,然後是包含調用該類的content.php。PHP類導致錯誤
錯誤:
Fatal error: Class 'A' not found in X:\xxxxx\xxxx\xxxxx\content.php on line 2
的index.php:
<?php
require('users.class.php');
$a = new A();
require('content.php');
?>
content.php:
<?php
echo $a->foo();
?>
users.class.php:
<?php
class A
{
function foo()
{
return 'hello world';
}
}
?>
您確定您包含正確的'users.class.php'嗎? – 2010-10-28 02:10:42