I want to return first 5 items from array.
Once first 5 items are returned, then if I reexecute my function then it can return second 5 items from same array and so on.
How can I do this?
$myArray = [28,32,33,34,37,49,50,52,57,61,62,63,65,66,67,68,70,71,73,74,75,80,81,89];
I need output as below
Outputs:-
first time $ans = [28,32,33,34,37];
second time $ans = [49,50,52,57,61];
third time $ans = [62,63,65,66,67];
fourth time $ans = [68,70,71,73,74];
fifth time $ans = [75,80,81,89];
I think a class would benefit this situation:
Example usage:
Outputs:
UPDATE
The updated code below works between executions of the script by serializing the object and persisting it to local storage. I also changed the way the data is retrieved by the script, in the example below it is read from a file called 'data', which makes the script more dynamic, in that you can pass different data sets to the script if needed.
Data (stored in a file called 'data'):
Script:
The process for the script is as follows:
next()
methodnext()
methodIf you want to re-run the script from the beginning of the data set then you need to remove the 'class.ser' file that is created.