php增加屬性的方法:1、建立一個PHP範例檔案;2、輸入「error_reporting(-1);ini_set('display_errors','on');」;3、透過「$a- >add();”為物件動態增加屬性即可。
本文操作環境:windows7系統、PHP7.1版、DELL G3電腦
php怎麼增加屬性?
php 給物件動態增加屬性
範例程式碼
<?php error_reporting(-1); ini_set('display_errors','on'); class A { public $a = 'hello'; public function add() { $this->b = 'world'; }- public static function p() { echo 'world',PHP_EOL; }- } $a = new A; $a->add(); $a->c = 'test'; $a->p(); var_dump($a);
輸出
world object(A)#1 (3) { ["a"]=> string(5) "hello" ["b"]=> string(5) "world" ["c"]=> string(4) "test" }
補充:物件可以呼叫物件所屬類別的靜態方法,如
$a->p();
推薦學習:《PHP影片教學》
以上是php怎麼增加屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!