如何使用PHP創建沒有類的object物件方法

6 月 29, 2018 | | 0 條留言

你可以隨時使用new stdClass()。示例代碼:

$object = new stdClass();
$object->property = 'Here we go';

var_dump($object);
/*
outputs:

object(stdClass)#2 (1) {
["property"]=>
string(10) "Here we go"
}
*/

同樣從PHP 5.4開始,你可以得到相同的輸出:

$object = (object) ['property' => 'Here we go'];

PHP 5.4方法,這使得代碼更短,更具可讀性,特別是當你有幾個項目添加到對象。