Exemple #1
0
<h2 dir="ltr">Example Output:</h2>
<?php
    error_reporting(E_STRICT);
    $time_start = microtime(true);

    date_default_timezone_set('UTC');
    $time = time();

    echo date('l dS F Y h:i:s A', $time);
    echo '<br /><br />';

    include('../Arabic.php');
    $Arabic = new Arabic('ArDate');

    $correction = $Arabic->dateCorrection ($time);
    echo $Arabic->date('l dS F Y h:i:s A', $time, $correction);
    echo '<br /><br />';

    $Arabic->setMode(2);
    echo $Arabic->date('l dS F Y h:i:s A', $time);
    echo '<br /><br />';
    
    $Arabic->setMode(3);
    echo $Arabic->date('l dS F Y h:i:s A', $time);
    echo '<br /><br />';

    $Arabic->setMode(4);
    echo $Arabic->date('l dS F Y h:i:s A', $time);
    echo '<br /><br />';

    $Arabic->setMode(5);