Is branch prediction a big issue in PHP too?
I am referring to this answer: Why is processing a sorted array faster than an unsorted array?
So in C++ and Java a sorted array is computed faster than an unsorted, because the processor can predict the next steps correctly.
Would this refer to PHP programs the same way?