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 />";
?>
|
|
Sunday 05th February 2012
Arabic String: الخميس القادم
Unix Timestamp:
1328745600
Formated Date: Thursday 09th February 2012
Arabic String: الأحد الماضي
Unix Timestamp:
1327795200
Formated Date: Sunday 29th January 2012
Arabic String: بعد أسبوع وثلاثة أيام
Unix Timestamp:
1329299171
Formated Date: Wednesday 15th February 2012
Arabic String: منذ تسعة أيام
Unix Timestamp:
1327657571
Formated Date: Friday 27th January 2012
Arabic String: قبل إسبوعين
Unix Timestamp:
1327225571
Formated Date: Sunday 22nd January 2012
|
|