Example #1
0
</head>

<body>

<div class="Paragraph">
<h2 dir="ltr">Example Output:</h2>
<?php
    error_reporting(E_STRICT);
    $time_start = microtime(true);

    date_default_timezone_set('UTC');
    
    include('../Arabic.php');
    $Arabic = new Arabic('Salat');

    $Arabic->setLocation(33.513, 36.292, 2);
    $Arabic->setDate(date('j'), date('n'), 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->getPrayTime2();
    
    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 />";