我有一個問題,當涉及到使用類,構造函數和功能使用類和函數
我想使用json_encode並回顯數組。 任何人都可以在這裏指出我正確的方向嗎?我真的不知道我做錯了什麼,我認爲這是對的,但我猜不是。任何和所有的幫助表示讚賞。謝謝。
沒有錯誤或輸出。
class information
{
public $motd, $owner, $greeting;
public $array;
function __construct($motd, $owner, $greeting){
$this->motd = $motd;
$this->owner = $owner;
$this->greeting = $greeting;
}
function test(){
$array = array(
'motd' => $motd,
'owner' => $owner,
'greeting' => $greeting
);
$pretty = json_encode($array);
echo $pretty;
}
}
$api = new information('lolol','losslol','lololol');
$api->test;
?>
你需要* *調用了'test'方法。 '$ api-> test();' –
和你的數組將會是空的應該是:motd'=> $ this-> motd, 'owner'=> $ this-> owner, 'greeting'=> $ this - >問候 – Steve
請記住*閱讀*很多代碼,並*測試*更多。那樣的話,你會比第一個問題尋求幫助更好地學習。 – Lucio