Get Cursor pagination with PHP

Hello community,

I need to get the pagination cursor with php but i have juste “e” as answer of the foreach.

foreach($json_array['pagination'] as $key=>$val){ echo $val['cursor']; }

Normally i just get all clips with :
foreach($json_array['data'] as $key=>$val){ echo $val['title']; }

But for get the pagination cursor is no working.

Can I have some help?

Thank you in advance!

I have found :
echo $json_array[‘pagination’][‘cursor’];

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.