独自の型の配列を含むことができるPHPクラスがあります。このクラスにはhatch()
、配列項目の1つに対して呼び出すと呼び出される関数もあり、関数を呼び出せないというメッセージが表示されます。私はそれをそのように呼びます
$this->arrayLikeThis[$i]->hatch();
ただし、オブジェクトをハッチングするための外部関数を作成しましたが、そのように呼び出すのが大好きです。var_dump()
クラスのの任意の関数を呼び出すことができることを私は知っています:
object(web\ui\structure\tag)#1 (4) {
["name"]=>
string(4) "meta"
["type"]=>
int(1)
["attributes"]=>
array(2) {
[0]=>
object(web\ui\structure\attribute)#2 (2) {
["attributeName"]=>
string(7) "content"
["attributeValue"]=>
string(24) "text/html; charset=utf-8"
}
[1]=>
object(web\ui\structure\attribute)#3 (2) {
["attributeName"]=>
string(10) "http-equiv"
["attributeValue"]=>
string(12) "Content-Type"
}
}
["childNodes"]=>
array(0) {
}
}