PHP (> = 5.4), 199 197 바이트
(골프에 의한 2 바이트)
<?$s=strlen(file_get_contents($argv[1])).'';echo strtr([waning_crescent,waning_gibbous,new_moon,0,waxing_crescent,waxing_gibbous,full_moon,first_quarter,third_quarter][($s[0]+$s[3])%11-2],'_',' ');
그것을 실행하려면 :
php -d error_reporting=0 -d short_open_tag=1 <filename> <image_path>
예:
php -d error_reporting=0 -d short_open_tag=1 lunar_phase.php https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Moon_phase_6.svg/240px-Moon_phase_6.svg.png
노트:
- 이
-d error_reporting=0
옵션은 통지 / 경고를 출력하지 않는 데 사용됩니다.
- 는
-d short_open_tag=1
짧은 태그를 허용해야합니다.
https
위 예제와 같은 URL을 사용하는 경우 OpenSSL 도 활성화해야합니다.
어떻게?
이 수식으로 파일 크기 (바이트)를 가져 와서 고유 한 번호를 만듭니다.
((<first_bytes_digit> + <fourth_bytes_digit>) % 11) - 2
이 수식은 3 만 누락 된 0에서 8까지의 숫자를 생성합니다.
┌─────────────────┬───────┬─────────┬─────┬────────────────────────┐
│ Phase │ Bytes │ 1st+4th │ %11 │ -2 (position in array) │
├─────────────────┼───────┼─────────┼─────┼────────────────────────┤
│ new moon │ 3451 │ 3+1=4 │ 4 │ 2 │
│ waxing crescent │ 6430 │ 6+0=6 │ 6 │ 4 │
│ first quarter │ 5144 │ 5+4=9 │ 9 │ 7 │
│ waxing gibbous │ 7070 │ 7+0=7 │ 7 │ 5 │
│ full moon │ 5283 │ 5+3=8 │ 8 │ 6 │
│ waning gibbous │ 7067 │ 7+7=14 │ 3 │ 1 │
│ third quarter │ 4976 │ 4+6=10 │ 10 │ 8 │
│ waning crescent │ 6337 │ 6+7=13 │ 2 │ 0 │
└─────────────────┴───────┴─────────┴─────┴────────────────────────┘
이전 접근법 :
PHP (> = 5.4), 251 바이트
<?foreach([4,8,16,20]as$w){$a+=imagecolorat(imagecreatefrompng($argv[1]),$w*10,120)>1e7;$a&&$w<5?$b=-2:0;}$x=explode('_','full moon_waning gibbous_third quarter_waning crescent_new moon_waxing crescent_first quarter_waxing gibbous');echo$x[$a*++$b+4];
그것을 실행하려면 :
php -d error_reporting=0 -d short_open_tag=1 <filename> <image_path>
예:
php -d error_reporting=0 -d short_open_tag=1 lunar_phase.php https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Moon_phase_6.svg/240px-Moon_phase_6.svg.png
노트:
- 이
-d error_reporting=0
옵션은 통지 / 경고를 출력하지 않는 데 사용됩니다.
- 는
-d short_open_tag=1
짧은 태그를 허용해야합니다.
- PHP에는 GD 가 있어야하며 활성화되어 있어야합니다.
https
위 예제와 같은 URL을 사용하는 경우 OpenSSL 도 활성화해야합니다.
어떻게?
화상의 4 개 화소의 색상 검사 40,120
, 80,120
, 160,120
및 200,120
와 그 색의 월령 결정한다.