I have been attempting to page through zencoder-php job indexes, based off the library source code taking an array for the first and second argument, but I am unsure on how the array arguments have to be written to go through as many job indexes as possible. I have been unable to find an example for this, so I am attempting to go off of the zencoder-py documentation, which is entirely different. I only have been able to get the first page of job details every time I rewrite the arguments to pass.
This is what I have written so far:
for ($page_number = 0; $page_number < 10000; $page_number++){
$job_index = $l_xZencoder->jobs->index(array(), array('page='.$page_number));
foreach($job_index as $job){...}
}