[PHP] PHP4.x 버전과 PHP 5.x 버전 비교(Comparison between PHP4 and PHP5)
PHP5에서 무엇이 바뀌었을까?
- 젠드엔진2가 내장되었습니다.
- PHP GCI 버전이
php.exe
에서php-cgi.exe
로 변경되었습니다. - PHP CLI 버전이
cli/php.exe
에서 주 디렉토리로 변경되었습니다. - PHP CLI 버전은
php.ini
지시어 설정과 상관없이 항상 전역$argv
(Array of arguments passed to script) 와$argc
(The number of arguments passed to script) 변수를 가지며,register_argc_argv
(argv와 argc 변수를 선언할지 여부 설정)를off
로 설정해도 영향을 미치지 않습니다.