|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-03-18 21:48 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 06:00:01 2025 UTC |
Description: ------------ strtotime returns false for date format M d Y h:i:s:uA. I need this format because sybase queries are returning this format for datetime. Reproduce code: --------------- date_default_timezone_set( 'America/New_York' ); $testDate = date('M d Y h:i:s:uA'); $date = strtotime($testDate); Expected result: ---------------- I expect to get a valid result. Actual result: -------------- false