A PHP CLI for printing an emoji roughly corresponding to the current moon phase.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
468 B

  1. #!/usr/bin/env php
  2. <?php
  3. require_once dirname(__FILE__) . '/vendor/autoload.php';
  4. $phases = [
  5. 'New Moon' => '🌑',
  6. 'Waxing Crescent' => '🌒',
  7. 'First Quarter' => '🌓',
  8. 'Waxing Gibbous' => '🌔',
  9. 'Full Moon' => '🌕',
  10. 'Waning Gibbous' => '🌖',
  11. 'Third Quarter' => '🌗',
  12. 'Waning Crescent' => '🌘',
  13. ];
  14. $moonphase = new Solaris\MoonPhase;
  15. print $phases [ $moonphase->phase_name() ];
  16. # print " " . $moonphase->phase_name();