Ben autoload ve ad kullanmaya çalıştığınızda bu hatayı alıyorum:
Fatal error: Sınıf 'Sınıf1' /usr/local/www/apache22/data/public/php5.3/test.php üzerine bulunamadı line 10
Herkes yanlış yapıyorum bana söyleyebilir?
İşte benim kod:
Class1.php:
<?php
namespace Person\Barnes\David
{
class Class1
{
public function __construct()
{
echo __CLASS__;
}
}
}
?>
dnm.php:
<?php
function __autoload($class)
{
require $class . '.php';
}
use Person\Barnes\David;
$class = new Class1();
?>