Rev 1688 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php/*** Using I18Nv2_Locale* ===================** I18Nv2_Locale is a formatter object that provides functionality to format* dates, times, numbers and currencies in locale dependent conventions.** $Id: using_I18Nv2_Locale.php,v 1.1 2007-06-25 09:55:25 alexandre_tb Exp $*/require_once 'I18Nv2.php';$locale = &I18Nv2::createLocale('de_AT');echo "de_AT\n=====\n";echo "Format a currency value of 2000: ",$locale->formatCurrency(2000, I18Nv2_CURRENCY_INTERNATIONAL), "\n";echo "Format todays date: ",$locale->formatDate(null, I18Nv2_DATETIME_FULL), "\n";echo "Format current time: ",$locale->formatTime(null, I18Nv2_DATETIME_SHORT), "\n";$locale->setLocale('en_GB');echo "\nen_GB\n=====\n";echo "Format a currency value of 2000: ",$locale->formatCurrency(2000, I18Nv2_CURRENCY_INTERNATIONAL), "\n";echo "Format todays date: ",$locale->formatDate(null, I18Nv2_DATETIME_FULL), "\n";echo "Format current time: ",$locale->formatTime(null, I18Nv2_DATETIME_SHORT), "\n";?>