私はzendpaginatorを使用しています。$ this-> paginatorを使用して、次の構造を取得しています。
(
[_cacheEnabled:protected] => 1
[_adapter:protected] => Zend_Paginator_Adapter_Array Object
(
[_array:protected] => Array
(
[0] => Array
(
)
[1] => Array
(
)
)
[_count:protected] => 8
)
[_currentItemCount:protected] =>
[_currentItems:protected] =>
[_currentPageNumber:protected] => 1
[_filter:protected] =>
[_itemCountPerPage:protected] => 4
[_pageCount:protected] => 2
[_pageRange:protected] =>
[_pages:protected] =>
[_view:protected] =>
)
forループを使用して$this->paginatorにアクセスしましたが、すべて正常に機能しています。しかし、今は[_array:protected] =>配列値のみにアクセスし、array_sliceを使用して結果を3セットに分割したいと思います。しかし、その配列値にアクセスすることはできません。配列に型キャストしてみましたが、取得できませんでした。