Example Code:
<?php
date_default_timezone_set('UTC');
$time = time();
echo date('l dS F Y h:i:s A', $time);
echo '<br /><br />';
include('I18N_Arabic.php');
$Arabic = new I18N_Arabic('Date');
echo $Arabic->date('l dS F Y h:i:s A', $time);
echo '<br /><br />';
$Arabic->setMode(2);
echo $Arabic->date('l dS F Y h:i:s A', $time);
echo '<br /><br />';
$Arabic->setMode(3);
echo $Arabic->date('l dS F Y h:i:s A', $time);
echo '<br /><br />';
$Arabic->setMode(4);
echo $Arabic->date('l dS F Y h:i:s A', $time);
echo '<br /><br />';
$Arabic->setMode(5);
echo $Arabic->date('l dS F Y h:i:s A', $time);
?>
Total execution time is 0.0035560131072998 seconds
Amount of memory allocated to this script is 381360 bytes
Names of included or required files:
- /srv/www/vhosts/ar-php.org/httpdocs/I18N_Arabic/I18N_Arabic/Examples/ArDate.php
- /srv/www/vhosts/ar-php.org/httpdocs/I18N_Arabic/I18N_Arabic.php
- /srv/www/vhosts/ar-php.org/httpdocs/I18N_Arabic/I18N_Arabic/I18N_Arabic_Date.php
Related Class Documentation