#php
Read more stories on Hashnode
Articles with this tag
php isn't the sort of language where developers usually think about things like memory. we just sort of sling around variables and functions and let...
i often joke that php is a systems programming language that you can also use to create a home page. it’s not really true, of course; no one is going...
recursion has a bad reputation amongst programmers; it's convoluted and complicated and difficult to debug, a real footgun. it's something you do at...
there’s an rfc vote currently underway for a number of new array functions in php8.4 (thanks to symfony station for pointing this out!). the proposal...
php's arrays are great. until they aren't. it's easy to let arrays get away on you and wind up writing complex, hard-to-test foreach loops to modify...
if you write laravel projects, then you've probably written some database seeders and maybe some factories to create some convincing fake data to fill...