PHP code example of geniusts / prayer-times

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

    

geniusts / prayer-times example snippets


    use \GeniusTS\PrayerTimes\Prayer;
    use \GeniusTS\PrayerTimes\Coordinates;

    $prayer = new Prayer(new Coordinates($longitude, $latitude));
    // Or
    $prayer = new Prayer();
    $prayer->setCoordinates($longitude, $latitude);

    // Return an \GeniusTS\PrayerTimes\Times instance
    $times = $prayer->times('2017-5-9');
    $times->setTimeZone(+3);

    echo $times->fajr->format('h:i a');

    // change instance value
    use \GeniusTS\PrayerTimes\Methods\World;

    $prayer->setMethod(new World);
    // Or
    $prayer->setMethod(Prayer::METHOD_MUSLIM_WORLD_LEAGUE);

    // change default value
    Prayer::setDefaultMethod(new World);
    // Or
    Prayer::setDefaultMethod(Prayer::METHOD_MUSLIM_WORLD_LEAGUE);

    //Change instance value
    $prayer->setMathhab(Prayer::MATHHAB_HANAFI);


    //Change default value
    Prayer::setDefaultMathhab(Prayer::MATHHAB_HANAFI);

    //Change instance value
    $prayer->setHighLatitudeRule(Prayer::HIGH_LATITUDE_MIDDLE_OF_NIGHT);


    //Change default value
    Prayer::setDefaultHighLatitudeRule(Prayer::HIGH_LATITUDE_MIDDLE_OF_NIGHT);

    //Change instance value
    $prayer->setAdjustments(0, 2, 5, 3, 8, 4);


    //Change default value
    Prayer::setDefaultAdjustments(0, 2, 5, 3, 8, 4);