__autoload() ve Exception
açıklama eklenecek.


<?php

function __autoload($class_name)
{
    $file $class_name '.php';

    if(!file_exists($file))
    {
        eval("class $class_name{}");
        throw new Exception("Class $class_name not found");
    }

    require_once($file);
}

?>



Ad Soyad:
E-posta:
Web site:
şuralara da bakın derim

Burak İlem

Ali Yılmaz