Curl Image using php but empty file is created
Viewed 437 times since Fri, Dec 24, 2021
//Init curl$ch = curl_init ($url); //Required to be falsecurl_setopt($ch, CURLOPT_HEADER, 0); //Required for http(s)curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //Required to be truecurl_setopt($ch,...
Read More
Extract numbers from a string
Viewed 432 times since Mon, Sep 14, 2020
$str = 'In My Cart : 11 items';$int = (int) filter_var($str, FILTER_SANITIZE_NUMBER_INT); Reference: https://stackoverflow.com/questions/6278296/extract-numbers-from-a-string
Read More