Example Output:

Calculated first day of Ramadan 1429 unix timestamp is: 1220313600
Which is Tuesday September 2, 2008 in Gregorian calendar

Example Code:

    <?php
    date_default_timezone_set
('UTC');
    
    include(
'I18N_Arabic.php');
    
$Ar = new I18N_Arabic('Mktime');
    
    
$time $Ar->mktime(000911429);
    
    echo 
"Calculated first day of Ramadan 1429 unix timestamp is: $time<br>";
    
    
$Gregorian date('l F j, Y',$time);
    
    echo 
"Which is $Gregorian in Gregorian calendar";
    
?>

Total execution time is 0.0036101341247559 seconds
Amount of memory allocated to this script is 217184 bytes

Names of included or required files:

Related Class Documentation