How much different is modern PHP 7/8 from PHP 5?
How will Wordpress benefit from PHP 8.0 and JIT?
Probably no significant improvements, since most of the time is spent waiting on MySQL and the file system. I’d love to be surprised, but right now my expectations are low.
It’s still exciting because it could open up new areas to PHP that used to require custom extensions.
More on reddit.comLaravel 5.8.35 + 6.7.0 and PHP 7.1, 7.2, 7.3 7.4 Benchmarks
Multithreading in PHP with pthreads
Thanks for writing this krakjoe!
I'd especially like to emphasize the awesomeness of point 1: You probably heard many people tell you that PHP does not support multi-threading whereas Ruby and Python do. In a way, the converse is true: PHP has support for actual multi-threading, whereas Ruby and Python implement it using a GIL (global interpreter lock, which basically means that threads can only improve performance if they are IO-bound). PHP just doesn't natively expose threads to the user and requires an extension like pthreads instead.
More on reddit.com