PHP str_contains() is born

Early 2020 there was this post on /r/PHP posing the question “With so many features added to PHP, why is there no str_contains?”. flippeeer who submitted this post is right,…

Truncate a string in PHP

Occasionally you will get a string that is longer than what you designed for, this gets fixed by printing a set amount from the string and affixing … onto the…

The modulo operator

Out of all operators in programming, it is the modulo operator that goes under the radar most. Perhaps this is due to a lack of need or even an understanding…

Save image using cURL with PHP

Often cURL in PHP is used to download whole webpages, another great use is downloading and saving images. Using cURL to save images is used over the file_put_content(file_get_contents()) because you…