對象的初始值數組。對象的初始值數組
class test{
private $H_headers = array("A","B K ".chr(128),"C","D");
//Why I can not init this value?
...
}
}
Multiple annotations found at this line:
- syntax error, unexpected ','
- syntax error, unexpected '.',
expecting ')'
,但通常我可以:
$H_headers = array("A","B K ".chr(128),"C","D");
可能重複[?爲什麼不PHP屬性允許功能(http://stackoverflow.com/questions/3960323/why -dont-php-attributes-allow-functions) – 2011-04-05 14:12:18
是的,我明白了,但不容易理解他們回答的是什麼?但對我來說簡單得多,看看這個我仍然無法解決我的問題。 – kn3l 2011-04-05 14:16:35
簡而言之:你不能在那裏使用功能。只是不使用功能那裏。 – KingCrunch 2011-04-05 14:24:27