I want to know how many milliseconds a PHP for-loop takes to execute.
I know the structure of a generic algorithm, but no idea how to implement it in PHP:
Begin
init1 = timer(); // where timer() is the amount of milliseconds from midnight
the loop begin
some code
the loop end
total = timer() - init1;
End