|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-08-08 12:48 UTC] lecoq_tr at hotmail dot com
Example code :
print strtotime("Tue Aug 7 18:48:28 2001");
This sample code format used to work properly in all PHP releases this year when we used Red Hat 6.2. It could give the proper timestamp.
But after upgrading to Red Hat 7.1, this code only gives "-1". I always use the same "configure" options when compiling. I run PHP as Apache module.
I have to take the first 11 characters of the etring to calculate the timestamp, but it is not precise without time and year information.
What do I do to have this code work properly again?
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 14:00:01 2025 UTC |
try... print strtotime("Tue Aug 7 2001 18:48:28");