Q: I'm trying to get the week range using Sunday as the start date, and a reference date, say $date, but I just can't seem to figure it out. For example, if I had $date as 2009-05-01, I would get 2009-04-26 and 2009 ...
Tag Archives: php
PHP - General Array: 1.write array to file: $arr=array("orange","apple"); $file = fopen("test.txt","w"); fwrite($file,print_r($arr_car,true)); fclose($file); ...
Q: I've tried to use the PHP function getimagesize, but I was unable to extract the image width and height as an integer value. How can I achieve this? A: Try like this: [crayon-6769b8794e3dc040203627/] Ma ...