See also: ArMktime
Related Class Documentation
<?php
date_default_timezone_set('UTC');
$time = time();
echo date('l dS F Y h:i:s A', $time);
echo '<br /><br />';
include('Arabic.php');
$Ar = new Arabic('ArDate');
$fix = $Ar->dateCorrection ($time);
echo $Ar->date('l dS F Y h:i:s A',
$time, $null, $fix);
echo '<br /><br />';
$Ar->setMode(2);
echo $Ar->date('l dS F Y h:i:s A', $time);
echo '<br /><br />';
$Ar->setMode(3);
echo $Ar->date('l dS F Y h:i:s A', $time);
echo '<br /><br />';
$Ar->setMode(4);
echo $Ar->date('l dS F Y h:i:s A', $time);
?>
|
|
Sunday 01st August 2010 12:13:49 AM
الأحد 20 شعبان 1431 12:13:49 صباحاً
الأحد 01 آب 2010 12:13:49 صباحاً
الأحد 01 أغسطس 2010 12:13:49 صباحاً
الأحد 01 آب/أغسطس 2010 12:13:49 صباحاً
|
|