2014-10-08 41 views
0

我使用drupal框架編寫了一個簡單的類,它不會從類中返回任何輸出。這裏是代碼。無法從使用drupal框架的php類輸出

class abc { 
    private $abc = "classs"; 

    public function output(){ 
    return $this->abc; 
    } 
} 

echo df= new abc(); 
if ($df){ 
    echo "instantiated"; // I wrote this to verify whether $db is instantiating the class or not 
} 

$df->output(); 

if($df->output()) 
{ 
    echo "<br /> <br /> damm drupal"; // simply to verify 
} 

error_reporting(E_ALL); // no errors 

這裏是輸出

instantiated 

damm drupal 

,但我沒有看到在類「ABC」的方法輸出的輸出。

這是在bootstrap中做的事情嗎?

回答

2

你只是忘了迴應輸出!

所以這樣寫:

echo $df->output();