solaris/php-moon-phase

Calculate the phases of the Moon in PHP.

Fund package maintenance!
Buymeacoffee

Installs: 38 438

Dependents: 1

Suggesters: 0

Security: 0

Stars: 157

Watchers: 12

Forks: 46

Open Issues: 0

v3.0.0 2023-04-11 07:13 UTC

This package is auto-updated.

Last update: 2024-04-08 11:26:08 UTC


README

PHP from Packagist Codacy Badge Latest Stable Version Total Downloads License

Solaris PHP Moon Phase

Calculate the phases of the Moon in PHP. This library is based on Moontool for Windows.

Installation

This library is made for the use with Composer. Add it to your project by running $ composer require solaris/php-moon-phase.

Usage

Create an instance of the MoonPhase class, supplying a DateTime object with a UNIX timestamp for when you want to determine the moon phase (if you don't then the current time will be used).

You can then use the following methods:

  • getPhase(): the terminator phase angle as a fraction of a full circle (i.e., 0 to 1). Both 0 and 1 correspond to a New Moon, and 0.5 corresponds to a Full Moon.
  • getIllumination(): the illuminated fraction of the Moon (0 = New, 1 = Full).
  • getAge(): the age of the Moon, in days.
  • getDistance(): the distance of the Moon from the centre of the Earth (kilometres).
  • getDiameter(): the angular diameter subtended by the Moon as seen by an observer at the centre of the Earth (degrees).
  • getSunDistance(): the distance to the Sun (kilometres).
  • getSunDiameter(): the angular diameter subtended by the Sun as seen by an observer at the centre of the Earth (degrees).
  • getPhaseNewMoon(): the time of the New Moon in the current lunar cycle, i.e., the start of the current cycle (UNIX timestamp).
  • getPhaseNextNewMoon(): the time of the New Moon in the next lunar cycle, i.e., the start of the next cycle (UNIX timestamp).
  • getPhaseFullMoon(): the time of the Full Moon in the current lunar cycle (UNIX timestamp).
  • getPhaseNextFullMoon(): the time of the Full Moon in the next lunar cycle (UNIX timestamp).
  • getPhaseFirstQuarter(): the time of the first quarter in the current lunar cycle (UNIX timestamp).
  • getPhaseNextFirstQuarter(): the time of the first quarter in the next lunar cycle (UNIX timestamp).
  • getPhaseLastQuarter(): the time of the last quarter in the current lunar cycle (UNIX timestamp).
  • getPhaseNextLastQuarter(): the time of the last quarter in the next lunar cycle (UNIX timestamp).
  • getPhaseName(): the phase name.

Example

<?php

use Solaris\MoonPhase;

$moonPhase = new MoonPhase();

$age = round($moonPhase->getAge(), 1);
$stage = $moonPhase->getPhase() < 0.5 ? 'waxing' : 'waning';
$distance = round($moonPhase->getDistance(), 2);
$next = gmdate('G:i:s, j M Y', (int) $moonPhase->getPhaseNextNewMoon());

echo 'The moon is currently ' . $age . ' days old, and is therefore ' . $stage . '. ';
echo 'It is ' . $distance . ' km from the centre of the Earth. ';
echo 'The next new moon is at ' . $next . '. ';

Help

If you have any questions, feel free to contact us under hello@bitandblack.com.

Further information about Bit&Black can be found under www.bitandblack.com.