コード例 #1
0
ファイル: autoload.plug.php プロジェクト: gpuenteallott/rox
/**
 * This PHP magic function gets called
 * whenever a script uses a yet undefined classname,
 * which can be for subclassing, for constructing ("new" keyword),
 * or for calling static methods or attributes.
 *
 * @param string $classname
 */
function __autoload($classname)
{
    AutoloadPlug::autoload($classname);
}