Test: passing classes vs. arrays
Is there any penalty (either way) in passing class objects vs. arrays? Theoretically, they are semantically equivalent.
View test history (2) Run this test again Return to test menuResult: Discarded
The test labeled "arrays" was the faster by 0.0407 seconds, (4.011% faster)
The arrays test took 0.9746 seconds.
The classes test took 1.0153 seconds.
Nitty-Gritty
Each test case ran 20 random code order iterations consisting of 246,905 loops for a total of 4,938,100 runs.
- Line execution difference (0.000008) milliseconds.
- Avg difference (2.036) milliseconds per 246,905 loops.
- Total difference 40.73 milliseconds for 4,938,100 loops
The iteration variablity for Code 1 was (5.4633) milliseconds and Code 2 was (5.0697) milliseconds. The lower and the closer together there values are the more accurate the results are.
Code
The first test, "classes", was:
/* class Example { var $x; } function example_class($x) { $GLOBALS['dummy'] = $x->x; } $GLOBALS['test_object'] = new Example(); $GLOBALS['test_object']->x = 42; */ example_class($GLOBALS['test_object']);
The second test, "arrays", was:
/* function example_array($x) { $GLOBALS['dummy'] = $x['x']; } $GLOBALS['test_array'] = array(); $GLOBALS['test_array']['x'] = 42; */ example_array($GLOBALS['test_array']);