<?php
 
 
###########################################################
 
// ملف القالب
 
include("inc/MyTemplate.class");
 
 
// تاريخ اليوم بالهجرية:
 
$hijri = MyTemplate::arabicDate('hj:d/m/Y', time());
 
 
// تاريخ اليوم بالهجرية - كاملاً:
 
$hijri_full = MyTemplate::arabicDate('hj:l, d/F/Y', time());
 
 
// التحويل من تاريخ ميلادي إلى هجري:
 
$geoDate = '07/07/1978';
 
$geoDatex = explode('/', $geoDate);
 
$conversion_result = MyTemplate::arabicDate('hj:d/m/Y', strtotime($geoDatex[1].'/'.$geoDatex[0].'/'.$geoDatex[2]));
 
 
// تاريخ اليوم الميلادي بالعربية:
 
$gdate = MyTemplate::arabicDate('ar:l, d/F/Y', time());
 
 
 
// استدعاء قالب الصفحة
 
$html = MyTemplate::MyTemplate("templates/myDate.html");
 
eval ("print stripslashes(\"$html\");");
 
 
###########################################################
 
 
?>
 
 
 |