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');
echo $Ar->date('l dS F Y h:i:s A', $time);
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);
?>
|
|
Thursday 11th March 2010 01:34:45 AM
الخميس 27 ربيع الأول 1431 01:34:45 صباحاً
الخميس 11 آذار 2010 01:34:45 صباحاً
الخميس 11 مارس 2010 01:34:45 صباحاً
الخميس 11 آذار/مارس 2010 01:34:45 صباحاً
|
|