Example #1 was wrong

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@319056 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Pedro Antonio Gil Rodríguez 2011-11-11 14:44:06 +00:00
parent cc97f20f7c
commit 1fea35fa6a

View file

@ -73,8 +73,8 @@
$fmt = datefmt_create( "en_US" ,IntlDateFormatter::FULL,IntlDateFormatter::FULL,'America/Los_Angeles',IntlDateFormatter::GREGORIAN );
echo "locale of the formatter is : ".datefmt_get_locale($fmt);
echo "First Formatted output is ".datefmt_format( $fmt , 0);
echo "locale of the formatter is : ".datefmt_get_locale($fmt);
$fmt = datefmt_create( "de-DE" ,IntlDateFormatter::FULL,IntlDateFormatter::FULL,'America/Los_Angeles',IntlDateFormatter::GREGORIAN );
echo "locale of the formatter is : ".datefmt_get_locale($fmt);
echo "Second Formatted output is ".datefmt_format( $fmt , 0);
?>