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

PHP 8.4.6 변경 기록과 적용 점검

릴리스: 2025년 4월 10일

게시: 2026년 8월 6일

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

PHP 8.4.6 변경 사항

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

변경된 구성요소

BCMath · Core · DBA · DOM · Fuzzer · GD · LDAP · Mbstring · Opcache · PDO · Standard · SOAP · SPL · Treewide · Windows

원문에 명시된 CVE

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

사용 환경별 확인 순서

  • php -vphp -m으로 실제 실행 버전과 확장 목록을 확인하고 아래 원문에서 사용 중인 구성요소의 변경을 찾으세요.
  • composer check-platform-reqs로 설치 환경의 요구사항을 확인하세요. 성공하더라도 동작 호환성까지 보장하지는 않습니다.
  • PDO를 사용한다면 실제 데이터베이스 드라이버로 조회·트랜잭션 테스트를 실행하세요.
  • GD를 사용한다면 이미지 업로드·리사이즈 처리를 실제 파일로 확인하세요.
  • BCMath를 사용한다면 금액·정밀도·부호 경계값의 계산 결과를 확인하세요.
  • 배포 전 스테이징에서 애플리케이션 테스트를 실행하고, 배포 후 웹 프로세스와 큐 워커가 새 PHP를 사용하는지 확인하세요.

공식 변경 기록

10 Apr 2025, PHP 8.4.6

  • BCMath: . Fixed pointer subtraction for scale. (SakiTakamachi)

  • Core: . Fixed property hook backing value access in multi-level inheritance. (ilutov) . Fixed accidentally inherited default value in overridden virtual properties. (ilutov) . Fixed bug GH-17376 (Broken JIT polymorphism for property hooks added to child class). (ilutov) . Fixed bug GH-17913 (ReflectionFunction::isDeprecated() returns incorrect results for closures created from magic __call()). (timwolla) . Fixed bug GH-17941 (Stack-use-after-return with lazy objects and hooks). (nielsdos) . Fixed bug GH-17988 (Incorrect handling of hooked props without get hook in get_object_vars()). (ilutov) . Fixed bug GH-17998 (Skipped lazy object initialization on primed SIMPLE_WRITE cache). (ilutov) . Fixed bug GH-17998 (Assignment to backing value in set hook of lazy proxy calls hook again). (ilutov) . Fixed bug GH-17961 (use-after-free during dl()'ed module class destruction). (Arnaud) . Fixed bug GH-15367 (dl() of module with aliased class crashes in shutdown). (Arnaud) . Fixed OSS-Fuzz #403308724. (nielsdos) . Fixed bug GH-13193 again (Significant performance degradation in 'foreach'). (nielsdos)

  • DBA: . Fixed assertion violation when opening the same file with dba_open multiple times. (chschneider)

  • DOM: . Fixed bug GH-17991 (Assertion failure dom_attr_value_write). (nielsdos) . Fix weird unpack behaviour in DOM. (nielsdos) . Fixed bug GH-18090 (DOM: Svg attributes and tag names are being lowercased). (nielsdos) . Fix xinclude destruction of live attributes. (nielsdos)

  • Fuzzer: . Fixed bug GH-18081 (Memory leaks in error paths of fuzzer SAPI). (Lung-Alexandra)

  • GD: . Fixed bug GH-17984 (calls with arguments as array with references). (David Carlier)

  • LDAP: . Fixed bug GH-18015 (Error messages for ldap_mod_replace are confusing). (nielsdos)

  • Mbstring: . Fixed bug GH-17989 (mb_output_handler crash with unset http_output_conv_mimetypes). (nielsdos)

  • Opcache: . Fixed bug GH-15834 (Segfault with hook "simple get" cache slot and minimal JIT). (nielsdos) . Fixed bug GH-17966 (Symfony JIT 1205 assertion failure). (nielsdos) . Fixed bug GH-18037 (SEGV Zend/zend_execute.c). (nielsdos) . Fixed bug GH-18050 (IN_ARRAY optimization in DFA pass is broken). (ilutov) . Fixed bug GH-18113 (stack-buffer-overflow ext/opcache/jit/ir/ir_sccp.c). (nielsdos) . Fixed bug GH-18112 (NULL access with preloading and INI option). (nielsdos) . Fixed bug GH-18107 (Opcache CFG jmp optimization with try-finally breaks the exception table). (nielsdos)

  • PDO: . Fix memory leak when destroying PDORow. (nielsdos)

  • Standard: . Fix memory leaks in array_any() / array_all(). (nielsdos)

  • SOAP: . Fixed bug #66049 (Typemap can break parsing in parse_packet_soap leading to a segfault) . (Remi)

  • SPL: . Fixed bug GH-18018 (RC1 data returned from offsetGet causes UAF in ArrayObject). (nielsdos)

  • Treewide: . Fixed bug GH-17736 (Assertion failure zend_reference_destroy()). (nielsdos)

  • Windows: . Fixed bug GH-17836 (zend_vm_gen.php shouldn't break on Windows line endings). (DanielEScherzer)

출처

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

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

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