Example Output:

Friday 06th March 2026 04:39:30 PM

الجمعة 17 رمضان 1447 04:39:30 مساءً [القمر الليلة]

Friday 17 Ramadan 1447 04:39:30 PM

الجمعة 06 آذار 2026 04:39:30 مساءً

الجمعة 06 مارس 2026 04:39:30 مساءً

الجمعة 06 آذار/مارس 2026 04:39:30 مساءً

الجمعة 06 الربيع 1394 04:39:30 مساءً

الجمعة 06 مارس 2026 04:39:30 مساءً

الجمعة 06 مارس 2026 04:39:30 مساءً

Example Code:

<?php
    date_default_timezone_set
('GMT');
    
$time time();

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

    require 
'../../Arabic.php';
    
$Arabic = new I18N_Arabic('Date');

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

    
$day $Arabic->date('j'$time$correction);
    echo 
' [<a href="Moon.php?day='.$day.'" target=_blank>القمر الليلة</a>]';
    echo 
'<br /><br />';

    
$Arabic->setMode(8);
    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);
    echo 
$Arabic->date('l dS F Y h:i:s A'$time);
    echo 
'<br /><br />';

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

    
$Arabic->setMode(7);
    echo 
$Arabic->date('l dS F Y h:i:s A'$time);

Total execution time is 0.002903938293457 seconds
Amount of memory allocated to this script is 529872 bytes

Names of included or required files:

Related Class Documentation