復制代碼 代碼如下:
 
<?php 
function load(){ 
require_once 'lib.php'; 
} 
spl_autoload_register('load'); 
?> 
復制代碼 代碼如下:
 
<?php 
class className{ 
function method(){ 
echo 'a method in class'; 
} 
} 
function onlyMethod(){ 
echo 'method only'; 
} 
?> 
復制代碼 代碼如下:
 
$class = new className(); 
$class->method(); 
onlyMethod(); 
參與資料:spl_autoload_register
新聞熱點
疑難解答