2014-01-29 90 views

回答

3

你shoulod考慮自動加載對象:http://www.php.net/manual/en/language.oop5.autoload.php

+2

自動加載可能是OP想要的功能,但他也必須申報的自動加載功能是該頁面,還是需要/包含它。所以,他不會僅僅**他在問題中指定的代碼。 –

-1
class classname 
{ 
    public function publicfuntioname($testvar) { 
     $this->testvar = $testvar; 
    } 
} 

現在包括這個文件的任何地方

$obj= new classname(); 

$obj->publicfuntioname("another value"); 
+0

他說他不想使用include。自動加載是答案。 – crush