Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 9345a880560f5dfd6079c42e06825997 > files > 26

php-pear-Calendar-0.5.4-2mdv2010.0.noarch.rpm

<?php
/**
* Description: simple example on i18N
*/
if ( !@include 'Calendar/Calendar.php' ) {
    define('CALENDAR_ROOT','../../');
}
require_once CALENDAR_ROOT.'Day.php';

$Day = & new Calendar_Day(2003,10,23);

setlocale (LC_TIME, "de_DE"); // Unix based (probably)
// setlocale (LC_TIME, "ge"); // Windows

echo ( strftime('%A %d %B %Y',$Day->getTimeStamp()));
?>