PHP code example of getarabictimepackage / arabic-time

1. Go to this page and download the library: Download getarabictimepackage/arabic-time library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

getarabictimepackage / arabic-time example snippets


use GetArabicTimePackage\ArabicTime\ArabicTime;

echo ArabicTime::now(); // Displays the current time in Arabic

use GetArabicTimePackage\ArabicTime\ArabicTime;

$time = new DateTime('now');
echo ArabicTime::format($time, 'H:i'); // Displays time in Arabic with a custom format

    'providers' => [
        // Other service providers...
        GetArabicTimePackage\ArabicTime\ArabicTimeServiceProvider::class,
    ],