From 1fea35fa6a816a68c3b27ac36a5d08b0e4cf2d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Antonio=20Gil=20Rodr=C3=ADguez?= Date: Fri, 11 Nov 2011 14:44:06 +0000 Subject: [PATCH] Example #1 was wrong git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@319056 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/intl/dateformatter/get-locale.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/intl/dateformatter/get-locale.xml b/reference/intl/dateformatter/get-locale.xml index 2539eeb2eb..20b3cde963 100644 --- a/reference/intl/dateformatter/get-locale.xml +++ b/reference/intl/dateformatter/get-locale.xml @@ -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); ?>