Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > 547c86d3839724107fd09960a346f118 > files > 49

php-pear-Calendar-0.5.5-7.mga5.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()));
?>