このエラーが発生する理由がわかりません
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';
}
}