我想了解這個對象,但我無法弄清楚一個簡單的事實。如果count方法顯示公共屬性,並且結果是傳遞數組中的鍵的數量。在關聯數組的情況下,當我嘗試訪問一個鍵,如公共財產沒有找到。也許我誤解了界面。PHP中的ArrayObject如何工作?
//example
$currentDate = getdate();
//applying print_r() we can see the content
$objectDate = new ArrayObject();
//verifying the public properties- result is 11
$objectDate->count();
//but can't access keys like public properties
$objectDate->hours;
減,因爲這是「我懶得看文檔」的問題。 –
除了你必須使用'['hours']',你需要'''objectDate-> hours;'前面的''''。 – Jurik
@RafałWalczak,你是否閱讀過文檔?如果你問我,這很不清楚。 Upvoting,因爲這是一個有趣的問題,因爲Rafal是不正確的;) – Luceos