Has anybody else experiencing that strptime() hangs?
Posted: Sun Sep 20, 2009 9:40 pm
I did the first example for PHP function strptime(): http://us2.php.net/manual/en/function.strptime.php
And everytime I run it, function strptime() hangs. No exceptions thrown, nothing, it just hangs.
Is anybody else experiencing the same issue? I am running PHP 5.2.9.
Thanks
Jeff in Seattle
And everytime I run it, function strptime() hangs. No exceptions thrown, nothing, it just hangs.
Code: Select all
$format = '%d/%m/%Y %H:%M:%S';
$strf = strftime($format);
echo "$strf\n";
print_r(strptime($strf, $format));Thanks
Jeff in Seattle