PHP 8.3.25 변경 기록과 적용 점검
릴리스: 2025년 8월 28일
게시: 2026년 9월 16일
PHP 8.3.25 공식 변경 기록에서 구성요소와 CVE를 추출하고 사용 환경별 확인 순서를 제공합니다.
PHP 8.3.25 변경 사항
공식 php-src 태그의 NEWS에서 이 버전의 항목만 추출했습니다. 아래 구성요소와 확인 순서는 원문에 따라 자동 구성됩니다. 애플리케이션 호환성이나 취약점 영향 여부를 판정하지 않습니다.
변경된 구성요소
Core · Calendar · FTP · GD · Hash · Intl · LDAP · LibXML · MbString · Opcache · OpenSSL · PDO Pgsql · Readline · SOAP · Sockets · Standard · Windows
원문에 명시된 CVE
이 NEWS 항목에 CVE 번호가 명시되어 있지 않습니다. 보안 문제가 없다는 의미는 아닙니다.
사용 환경별 확인 순서
php -v와php -m으로 실제 실행 버전과 확장 목록을 확인하고 아래 원문에서 사용 중인 구성요소의 변경을 찾으세요.composer check-platform-reqs로 설치 환경의 요구사항을 확인하세요. 성공하더라도 동작 호환성까지 보장하지는 않습니다.- PDO를 사용한다면 실제 데이터베이스 드라이버로 조회·트랜잭션 테스트를 실행하세요.
- PostgreSQL을 사용한다면 해당 확장과 드라이버의 쿼리 처리를 점검하세요.
- TLS 연결을 사용한다면 외부 API·메일 서버 연결과 인증서 검증을 점검하세요.
- GD를 사용한다면 이미지 업로드·리사이즈 처리를 실제 파일로 확인하세요.
- 배포 전 스테이징에서 애플리케이션 테스트를 실행하고, 배포 후 웹 프로세스와 큐 워커가 새 PHP를 사용하는지 확인하세요.
공식 변경 기록
28 Aug 2025, PHP 8.3.25
Core: . Fixed GH-19169 build issue with C++17 and ZEND_STATIC_ASSERT macro. (psumbera) . Fixed bug GH-18581 (Coerce numeric string keys from iterators when argument unpacking). (ilutov) . Fixed OSS-Fuzz #434346548 (Failed assertion with throwing __toString in binary const expr). (ilutov) . Fixed bug GH-19305 (Operands may be being released during comparison). (Arnaud) . Fixed bug GH-19303 (Unpacking empty packed array into uninitialized array causes assertion failure). (nielsdos) . Fixed bug GH-19306 (Generator can be resumed while fetching next value from delegated Generator). (Arnaud) . Fixed bug GH-19326 (Calling Generator::throw() on a running generator with a non-Generator delegate crashes). (Arnaud) . Fixed bug GH-18736 (Circumvented type check with return by ref + finally). (ilutov) . Fixed zend call stack size for macOs/arm64. (David Carlier) . Fixed bug GH-19065 (Long match statement can segfault compiler during recursive SSA renaming). (nielsdos, Arnaud)
Calendar: . Fixed bug GH-19371 (integer overflow in calendar.c). (nielsdos)
FTP: . Fix theoretical issues with hrtime() not being available. (nielsdos)
GD: . Fix incorrect comparison with result of php_stream_can_cast(). (Girgias)
Hash: . Fix crash on clone failure. (nielsdos)
Intl: . Fixed GH-19261: msgfmt_parse_message leaks on message creation failure. (David Carlier) . Fix return value on failure for resourcebundle count handler. (Girgias)
LDAP: . Fixed bug GH-18529 (additional inheriting of TLS int options). (Jakub Zelenka)
LibXML: . Fixed bug GH-19098 (libxml<2.13 segmentation fault caused by php_libxml_node_free). (nielsdos)
MbString: . Fixed bug GH-19397 (mb_list_encodings() can cause crashes on shutdown). (nielsdos)
Opcache: . Reset global pointers to prevent use-after-free in zend_jit_status(). (Florian Engelhardt)
OpenSSL: . Fixed bug GH-18986 (OpenSSL backend: incorrect RAND_{load,write}_file() return value check). (nielsdos, botovq) . Fix error return check of EVP_CIPHER_CTX_ctrl(). (nielsdos) . Fixed bug GH-19428 (openssl_pkey_derive segfaults for DH derive with low key_length param). (Jakub Zelenka)
PDO Pgsql: . Fixed dangling pointer access on _pdo_pgsql_trim_message helper. (dixyes)
Readline: . Fixed bug GH-19250 and bug #51360 (Invalid conftest for rl_pending_input). (petk, nielsdos)
SOAP: . Fixed bug GH-18640 (heap-use-after-free ext/soap/php_encoding.c:299:32 in soap_check_zval_ref). (nielsdos)
Sockets: . Fix some potential crashes on incorrect argument value. (nielsdos)
Standard: . Fixed OSS Fuzz #433303828 (Leak in failed unserialize() with opcache). (ilutov) . Fix theoretical issues with hrtime() not being available. (nielsdos) . Fixed bug GH-19300 (Nested array_multisort invocation with error breaks). (nielsdos)
Windows: . Free opened_path when opened_path_len >= MAXPATHLEN. (dixyes)
출처
PHP 8.3.25 공식 NEWS · 현재 PHP 지원 일정
원문에 없는 지원 종료일, CVE, Laravel 호환성 결론은 자동으로 추가하지 않습니다.