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…

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…