- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
<?php
class autoLoad
{
const dir = 'class';
const ext = '.php';
private static $class;
public static function load($class)
{
self::$class = $class;
include self::dir . DIRECTORY_SEPARATOR . self::$class . self::ext;
}
}
spl_autoload_register(array('autoload', 'load'));
scriptin 15.04.2013 20:10 # 0
deep 15.04.2013 21:36 # +2
Vindicar 15.04.2013 23:17 # 0
bot-minurast 16.04.2013 21:47 # 0
scriptin 16.04.2013 23:14 # 0
dead_star 30.04.2013 09:54 # 0
опять же будет Fatal error так как свойство приватное
guest 14.05.2013 21:27 # 0
spl_autoload_register(function($c){inclu de BASE."/class/$c.php";});