PHP code example of ianriizky / moslempray

1. Go to this page and download the library: Download ianriizky/moslempray 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/ */

    

ianriizky / moslempray example snippets




anrizky\MoslemPray\MoslemPray;
use Illuminate\Support\Carbon;

// Common request
$moslemPray = MoslemPray::getPrayerTime('denpasar');

// Common request with specified date (use Carbon power)
// @see https://carbon.nesbot.com/docs/
$moslemPray = MoslemPray::getPrayerTime('denpasar', '2021-04-12');
$moslemPray = MoslemPray::getPrayerTime('denpasar', Carbon::today());

// Request using "myquran" driver
$moslemPray = MoslemPray::myquran()->getPrayerTimePerMonth('denpasar');
$moslemPray = MoslemPray::myquran()->getPrayerTimePerMonth('denpasar', 2021, 4);