PHP code example of spatie / sun

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

    

spatie / sun example snippets


$coordinatesOfAntwerp = ['lat' => 51.260197, 'lng' => 4.402771];

$sun = new Sun($coordinatesOfAntwerp['lat'], $coordinatesOfAntwerp['lng']);

$sun->sunrise(); // returns an instance of \Carbon\Carbon

$sun->sunrise($carbon); // returns an instance of \Carbon\Carbon

$sun->zenith(); // returns an instance of \Carbon\Carbon

$sun->zenith($carbon); // returns an instance of \Carbon\Carbon

$sun->sunset(); // returns an instance of \Carbon\Carbon

$sun->sunset($carbon); // returns an instance of \Carbon\Carbon

$sun->sunIsUp(); // returns a boolean

$sun->sunIsUp($carbon); // returns a boolean