From:             
Operating system: Windows XP SP3
PHP version:      5.3.2
Package:          Date/time related
Bug Type:         Bug
Bug description:date_parse_from_format parsing invalid date

Description:
------------
date_parse_from_format is parsing invalid date using 'yz' format

Test script:
---------------
<?php

$trans_date = '10153';

$a_date = date_parse_from_format ('yz',$trans_date);

print_r($a_date);

?>

Expected result:
----------------
[year] => 2010

[month] => 6

[day] => 3

Actual result:
--------------
Array (

[year] => 2010

[month] => 1          <===== wrong

[day] => 154          <===== wrong

[hour] =>

[minute] =>

[second] =>

[fraction] =>

[warning_count] => 1 

[warnings] => Array (

        [5] => The parsed date was invalid 

) 

[error_count] => 0 

[errors] => Array ( ) 

[is_localtime] => 

)

-- 
Edit bug report at http://bugs.php.net/bug.php?id=51994&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=51994&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=51994&r=trysnapshot53
Try a snapshot (trunk):              
http://bugs.php.net/fix.php?id=51994&r=trysnapshottrunk
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=51994&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=51994&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=51994&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=51994&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=51994&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=51994&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=51994&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=51994&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=51994&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=51994&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=51994&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=51994&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=51994&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=51994&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=51994&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=51994&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=51994&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=51994&r=mysqlcfg

Reply via email to