Related Class Documentation
<?php
date_default_timezone_set('UTC');
$time = time();
echo date('l dS F Y', $time);
echo '<br /><br />';
include('Arabic.php');
$Arabic = new Arabic('ArStrToTime');
$str = 'الخميس القادم';
$int = $Arabic->strtotime($str, $time);
$date = date('l dS F Y', $int);
echo "<b><font color=#FFFF00>
Arabic String:</font></b> $str<br />
<b><font color=#FFFF00>
Unix Timestamp:</font>
</b> $int<br />
<b><font color=#FFFF00>
Formated Date:</font></b> $date
<br /><br />";
$str = 'الأحد الماضي';
$int = $Arabic->strtotime($str, $time);
$date = date('l dS F Y', $int);
echo "<b><font color=#FFFF00>
Arabic String:</font></b> $str<br />
<b><font color=#FFFF00>
Unix Timestamp:</font>
</b> $int<br />
<b><font color=#FFFF00>
Formated Date:</font></b> $date
<br /><br />";
$str = 'بعد أسبوع وثلاثة أيام';
$int = $Arabic->strtotime($str, $time);
$date = date('l dS F Y', $int);
echo "<b><font color=#FFFF00>
Arabic String:</font></b> $str<br />
<b><font color=#FFFF00>
Unix Timestamp:</font>
</b> $int<br />
<b><font color=#FFFF00>
Formated Date:</font></b> $date
<br /><br />";
$str = 'منذ تسعة أيام';
$int = $Arabic->strtotime($str, $time);
$date = date('l dS F Y', $int);
echo "<b><font color=#FFFF00>
Arabic String:</font></b> $str<br />
<b><font color=#FFFF00>
Unix Timestamp:</font>
</b> $int<br />
<b><font color=#FFFF00>
Formated Date:</font></b> $date
<br /><br />";
$str = 'قبل إسبوعين';
$int = $Arabic->strtotime($str, $time);
$date = date('l dS F Y', $int);
echo "<b><font color=#FFFF00>
Arabic String:</font></b> $str<br />
<b><font color=#FFFF00>
Unix Timestamp:</font>
</b> $int<br />
<b><font color=#FFFF00>
Formated Date:</font></b> $date
<br /><br />";
?>
|
|
Friday 12th March 2010
Arabic String: الخميس القادم
Unix Timestamp:
1268870400
Formated Date: Thursday 18th March 2010
Arabic String: الأحد الماضي
Unix Timestamp:
1267920000
Formated Date: Sunday 07th March 2010
Arabic String: بعد أسبوع وثلاثة أيام
Unix Timestamp:
1269280329
Formated Date: Monday 22nd March 2010
Arabic String: منذ تسعة أيام
Unix Timestamp:
1267638729
Formated Date: Wednesday 03rd March 2010
Arabic String: قبل إسبوعين
Unix Timestamp:
1267206729
Formated Date: Friday 26th February 2010
|
|