본문 바로가기
← PHP 소식
PHP 8.4.22안정

PHP 8.4.22 변경 기록과 적용 점검

릴리스: 2026년 6월 4일

게시: 2026년 9월 16일

PHP 8.4.22 공식 변경 기록에서 구성요소와 CVE를 추출하고 사용 환경별 확인 순서를 제공합니다.

PHP 8.4.22 변경 사항

공식 php-src 태그의 NEWS에서 이 버전의 항목만 추출했습니다. 아래 구성요소와 확인 순서는 원문에 따라 자동 구성됩니다. 애플리케이션 호환성이나 취약점 영향 여부를 판정하지 않습니다.

변경된 구성요소

Date · Intl · MySQLnd · Opcache · OpenSSL · SPL · Standard

원문에 명시된 CVE

이 NEWS 항목에 CVE 번호가 명시되어 있지 않습니다. 보안 문제가 없다는 의미는 아닙니다.

사용 환경별 확인 순서

  • php -vphp -m으로 실제 실행 버전과 확장 목록을 확인하고 아래 원문에서 사용 중인 구성요소의 변경을 찾으세요.
  • composer check-platform-reqs로 설치 환경의 요구사항을 확인하세요. 성공하더라도 동작 호환성까지 보장하지는 않습니다.
  • 날짜·시간대를 사용한다면 Carbon 및 날짜 변환 테스트에서 변경 항목과 관련된 입력을 점검하세요.
  • TLS 연결을 사용한다면 외부 API·메일 서버 연결과 인증서 검증을 점검하세요.
  • 배포 전 스테이징에서 애플리케이션 테스트를 실행하고, 배포 후 웹 프로세스와 큐 워커가 새 PHP를 사용하는지 확인하세요.

공식 변경 기록

04 Jun 2026, PHP 8.4.22

  • Date: . Fixed bug GH-18422 (int overflow in php_date_llabs). (iliaal)

  • Intl: . Fix incorrect argument positions in out-of-bounds errors for IntlCalendar::set(), IntlCalendar::setDate(), IntlCalendar::setDateTime(), and IntlGregorianCalendar date/time construction. (Weilin Du) . Expose Spoofchecker restriction-level APIs on all supported ICU versions. (Weilin Du) . Fix SpoofChecker::setAllowedChars() and IntlDateFormatter::__construct() to report PHP constant names instead of ICU constant names in user-visible error messages. (Weilin Du)

  • MySQLnd: . Fix persistent free of non-persistent connect_attr key (David Carlier).

  • Opcache: . Fixed tracing JIT crash when a VM interrupt is handled during an observed user function call. (Levi Morrison) . Fixed bug GH-22004 (Assertion failure at ext/opcache/jit/zend_jit_trace.c). (Arnaud)

  • OpenSSL: . Fix compatibility issues with OpenSSL 4.0. (jordikroon, Remi)

  • SPL: . Fix SplFixedArray::setSize leak when destructor grows during clear. (David Carlier) . Fixed bug GH-21933 (use after free of self-freeing MultipleIterator children). (David Carlier)

  • Standard: . Fixed bug GH-21689 (version_compare() incorrectly handles versions ending with a dot). (timwolla) . Fixed ip2long() leading zeros handling inconsistency on AIX. (ayappanec)

출처

PHP 8.4.22 공식 NEWS · 현재 PHP 지원 일정

원문에 없는 지원 종료일, CVE, Laravel 호환성 결론은 자동으로 추가하지 않습니다.

php.net 공식 릴리스 노트 보기 →