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

PHP 8.3.15 변경 기록과 적용 점검

릴리스: 2024년 12월 19일

게시: 2026년 8월 6일

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

PHP 8.3.15 변경 사항

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

변경된 구성요소

Calendar · COM · Core · Curl · DOM · FPM · GD · GMP · Hash · Opcache · OpenSSL · PDO · Phar · PHPDBG · SAPI · SimpleXML · SOAP · Standard · Streams · Windows

원문에 명시된 CVE

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

사용 환경별 확인 순서

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

공식 변경 기록

19 Dec 2024, PHP 8.3.15

  • Calendar: . Fixed jdtogregorian overflow. (David Carlier) . Fixed cal_to_jd julian_days argument overflow. (David Carlier)

  • COM: . Fixed bug GH-16991 (Getting typeinfo of non DISPATCH variant segfaults). (cmb)

  • Core: . Fail early in *nix configuration build script. (hakre) . Fixed bug GH-16727 (Opcache bad signal 139 crash in ZTS bookworm (frankenphp)). (nielsdos) . Fixed bug GH-16799 (Assertion failure at Zend/zend_vm_execute.h:7469). (nielsdos) . Fixed bug GH-16630 (UAF in lexer with encoding translation and heredocs). (nielsdos) . Fix is_zend_ptr() huge block comparison. (nielsdos) . Fixed potential OOB read in zend_dirname() on Windows. (cmb)

  • Curl: . Fixed bug GH-16802 (open_basedir bypass using curl extension). (nielsdos) . Fix various memory leaks in curl mime handling. (nielsdos)

  • DOM: . Fixed bug GH-16777 (Calling the constructor again on a DOM object after it is in a document causes UAF). (nielsdos) . Fixed bug GH-16906 (Reloading document can cause UAF in iterator). (nielsdos)

  • FPM: . Fixed GH-16432 (PHP-FPM 8.2 SIGSEGV in fpm_get_status). (Jakub Zelenka)

  • GD: . Fixed GH-16776 (imagecreatefromstring overflow). (David Carlier)

  • GMP: . Fixed bug GH-16890 (array_sum() with GMP can loose precision (LLP64)). (cmb)

  • Hash: . Fixed GH-16711: Segfault in mhash(). (Girgias)

  • Opcache: . Fixed bug GH-16770 (Tracing JIT type mismatch when returning UNDEF). (nielsdos, Dmitry) . Fixed bug GH-16851 (JIT_G(enabled) not set correctly on other threads). (dktapps) . Fixed bug GH-16902 (Set of opcache tests fail zts+aarch64). (nielsdos)

  • OpenSSL: . Prevent unexpected array entry conversion when reading key. (nielsdos) . Fix various memory leaks related to openssl exports. (nielsdos) . Fix memory leak in php_openssl_pkey_from_zval(). (nielsdos)

  • PDO: . Fixed memory leak of setFetchMode(). (SakiTakamachi)

  • Phar: . Fixed bug GH-16695 (phar:// tar parser and zero-length file header blocks). (nielsdos, Hans Krentel)

  • PHPDBG: . Fixed bug GH-15208 (Segfault with breakpoint map and phpdbg_clear()). (nielsdos)

  • SAPI: . Fixed bug GH-16998 (UBSAN warning in rfc1867). (nielsdos)

  • SimpleXML: . Fixed bug GH-16808 (Segmentation fault in RecursiveIteratorIterator ->current() with a xml element input). (nielsdos)

  • SOAP: . Fix make check being invoked in ext/soap. (Ma27)

  • Standard: . Fixed bug GH-16905 (Internal iterator functions can't handle UNDEF properties). (nielsdos) . Fixed bug GH-16957 (Assertion failure in array_shift with self-referencing array). (nielsdos)

  • Streams: . Fixed network connect poll interuption handling. (Jakub Zelenka)

  • Windows: . Fixed bug GH-16849 (Error dialog causes process to hang). (cmb)

출처

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

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

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