A directory listing sorted with sort() puts report-10.csv before report-2.csv, because string comparison reads character by character and 1 is less than 2. Nobody reports this as a…
5.3 stops getting security fixes in August. Deprecations first, then the behaviour changes, then the version bump — and an APC replacement that ignores every setting you tuned.
Three developers, three PHP patch versions and a bug that existed on one of them. A Vagrantfile, a playbook for everything inside it, and what the rebuild costs.
Laravel 4 decides which of the app/config/{env}/ directories to merge by matching the machine’s hostname against a list you write in bootstrap/start.php. It works until someone joins with…
__autoload() is a single global function, so a process can have exactly one of them. That was tolerable when an application was the only thing in the tree…
One dependency has no stable release yet, so composer install refuses to resolve it. The answer that comes up first is “minimum-stability”: “dev”, which fixes that package and…