Example Output:

Damascus, Syria Friday April 19, 2024

Imsak: 4:13
Fajr: 4:23
Sunrise: 5:55
Dhuhr: 12:34
Asr: 16:13
Sunset: 19:13
Maghrib: 19:15
Isha: 20:34
Midnight: 0:34

Imsak: Friday 19 April 2024 4:13 am
Fajr: Friday 19 April 2024 4:23 am
Sunrise: Friday 19 April 2024 5:55 am
Dhuhr: Friday 19 April 2024 12:34 pm
Asr: Friday 19 April 2024 4:13 pm
Sunset: Friday 19 April 2024 7:13 pm
Maghrib: Friday 19 April 2024 7:15 pm
Isha: Friday 19 April 2024 8:34 pm
Midnight: Saturday 20 April 2024 12:34 am

Qibla Direction (from the north direction): 164.70473621919 (click here)


Example Code:

<?php
    date_default_timezone_set
('UTC');
    
    require 
'../../Arabic.php';
    
$Arabic = new I18N_Arabic('Salat');

    
// Latitude, Longitude, Zone, and Elevation
    
$Arabic->setLocation(33.5236.313691);
    
    
// Month, Day, and Year
    
$Arabic->setDate(date('n'), date('j'), date('Y'));

    echo 
"<b>Damascus, Syria</b> ".date('l F j, Y')."<br /><br />";

    
// Salat calculation configuration: Egyptian General Authority of Survey
    
$Arabic->setConf('Shafi', -0.833333,  -17.5, -19.5'Sunni');
    
$times $Arabic->getPrayTime();
    
    echo 
"<b>Imsak:</b> {$times[8]}<br />";
    echo 
"<b>Fajr:</b> {$times[0]}<br />";
    echo 
"<b>Sunrise:</b> {$times[1]}<br />";
    echo 
"<b>Dhuhr:</b> {$times[2]}<br />";
    echo 
"<b>Asr:</b> {$times[3]}<br />";
    echo 
"<b>Sunset:</b> {$times[6]}<br />";
    echo 
"<b>Maghrib:</b> {$times[4]}<br />";
    echo 
"<b>Isha:</b> {$times[5]}<br />";
    echo 
"<b>Midnight:</b> {$times[7]}<br /><br />";

    echo 
'<b>Imsak:</b> '   .date('l j F Y g:i a'$times[9][8]).'<br />';
    echo 
'<b>Fajr:</b> '    .date('l j F Y g:i a'$times[9][0]).'<br />';
    echo 
'<b>Sunrise:</b> ' .date('l j F Y g:i a'$times[9][1]).'<br />';
    echo 
'<b>Dhuhr:</b> '   .date('l j F Y g:i a'$times[9][2]).'<br />';
    echo 
'<b>Asr:</b> '     .date('l j F Y g:i a'$times[9][3]).'<br />';
    echo 
'<b>Sunset:</b> '  .date('l j F Y g:i a'$times[9][6]).'<br />';
    echo 
'<b>Maghrib:</b> ' .date('l j F Y g:i a'$times[9][4]).'<br />';
    echo 
'<b>Isha:</b> '    .date('l j F Y g:i a'$times[9][5]).'<br />';
    echo 
'<b>Midnight:</b> '.date('l j F Y g:i a'$times[9][7]).'<br /><br />';
    
    
$direction $Arabic->getQibla();
    echo 
"<b>Qibla Direction (from the north direction):</b> $direction<br />";
    echo 
"(<a href=\"./Qibla.php?d=$direction\" target=_blank>click here</a>)<br /><br/>";

Total execution time is 0.0076858997344971 seconds
Amount of memory allocated to this script is 448784 bytes

Names of included or required files:

Related Class Documentation