<?php
$array = ('1', '2', ... , '30000');
$return = myFunction($array); // max 200 elements for one query
foreach($return as $r){ //this must be call only one
//doSomething;
}
i have array with 30000 elements. I must use there elements in function myFunction, but this function can get only max 200 elements for one query.