昨天我第一次开始在Google App Engine平台上进行开发。在遇到一些我可以使用文档轻松解决的小问题后,我现在似乎遇到了一个棘手的问题。出于某种原因,当我在GAE沙箱中运行时,以下__autoload函数不起作用。
function __autoload($classname)
{
if(file_exists('system/core/'.$classname.'.php'))
{
include('system/core/'.$classname.'.php');
}
else
{
echo 'The class "'.$classname.'" could not be found!';
}
}
该文件确实存在,当我使用正常的LAMP堆栈时,它没有任何问题。有人有这方面的经验吗?