我不明白为什么会收到此错误
Fatal error: Class 'ImageJpg' not found
这是我使用的代码
spl_autoload_register(function($class) {
if(file_exists($class))
{
include $class.'.php';
}
});
$n = new ImageJpg();
文件 ImageJpg.php 与上面的代码在同一个目录中。
这是 ImageJpg.php 的内容
<?php
class ImageJpg
{
public function __construct()
{
echo 'Image from jpg called';
}
}