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

PHP 8.4.19 변경 기록과 적용 점검

릴리스: 2026년 3월 12일

게시: 2026년 9월 16일

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

PHP 8.4.19 변경 사항

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

변경된 구성요소

Core · Curl · Date · DOM · MBString · Opcache · OpenSSL · PCNTL · PCRE · PDO_PGSQL · PGSQL · Sockets · Windows

원문에 명시된 CVE

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

사용 환경별 확인 순서

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

공식 변경 기록

12 Mar 2026, PHP 8.4.19

  • Core: . Fixed bug GH-21029 (zend_mm_heap corrupted on Aarch64, LTO builds). (Arnaud) . Fixed bug GH-20657 (Assertion failure in zend_lazy_object_get_info triggered by setRawValueWithoutLazyInitialization() and newLazyGhost()). (Arnaud) . Fixed bug GH-20504 (Assertion failure in zend_get_property_guard when accessing properties on Reflection LazyProxy via isset()). (Arnaud) . Fixed OSS-Fuzz #478009707 (Borked assign-op/inc/dec on untyped hooked property backing value). (ilutov) . Fixed bug GH-21215 (Build fails with -std=). (Arnaud) . Fixed bug GH-13674 (Build system installs libtool wrappers when using slibtool). (Michael Orlitzky)

  • Curl: . Fixed bug GH-21023 (CURLOPT_XFERINFOFUNCTION crash with a null callback). (David Carlier) . Don't truncate length. (ndossche)

  • Date: . Fixed bug GH-20936 (DatePeriod::__set_state() cannot handle null start). (ndossche) . Fix timezone offset with seconds losing precision. (ndossche)

  • DOM: . Fixed bug GH-21077 (Accessing Dom\Node::baseURI can throw TypeError). (ndossche) . Fixed bug GH-21097 (Accessing Dom\Node properties can can throw TypeError). (ndossche)

  • MBString: . Fixed bug GH-21223; mb_guess_encoding no longer crashes when passed huge list of candidate encodings (with 200,000+ entries). (Jordi Kroon)

  • Opcache: . Fixed bug GH-20718 ("Insufficient shared memory" when using JIT on Solaris). (Petr Sumbera) . Fixed bug GH-21227 (Borked SCCP of array containing partial object). (ilutov) . Fixed bug GH-21052 (Preloaded constant erroneously propagated to file-cached script). (ilutov)

  • OpenSSL: . Fix a bunch of leaks and error propagation. (ndossche)

  • PCNTL: . Fixed pcntl_setns() internal errors handling regarding errnos. (David Carlier/ndossche) . Fixed cpuset leak in pcntl_setcpuaffinity on out-of-range CPU ID on NetBSD/Solaris platforms. (David Carlier) . Fixed pcntl_signal() signal table registering the callback first OS-wise before the internal list. (David Carlier) . Fixed pcntl_signal_dispatch() stale pointer and exception handling. (David Carlier)

  • PCRE: . Fixed preg_match memory leak with invalid regexes. (David Carlier)

  • PDO_PGSQL: . Fixed bug GH-21055 (connection attribute status typo for GSS negotiation). (lsaos)

  • PGSQL: . Fixed bug GH-21162 (pg_connect() memory leak on error). (David Carlier)

  • Sockets: . Fixed bug GH-21161 (socket_set_option() crash with array 'addr' entry as null). (David Carlier) . Fixed possible addr length overflow with socket_connect() and AF_UNIX family sockets. (David Carlier)

  • Windows: . Fixed compilation with clang (missing intrin.h include). (Kévin Dunglas)

출처

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

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

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