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
Moderator: General Moderators
Code: Select all
$format = '%d/%m/%Y %H:%M:%S';
$strf = strftime($format);
echo "$strf\n";
print_r(strptime($strf, $format));There's no strptime on Windows.Eric! wrote:I get a fatal error on php 5.2.5, undefined function.
I am on Windows XP.tasairis wrote:There's no strptime on Windows.
And people wonder why they should read manuals...jeff00seattle wrote:I am on Windows XP.
Where did you find this information?