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

PHP 8.2.22 변경 기록과 적용 점검

릴리스: 2024년 8월 1일

게시: 2026년 8월 6일

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

PHP 8.2.22 변경 사항

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

변경된 구성요소

Core · Dom · Gd · LibXML · Opcache · Output · PDO · Phar · PHPDBG · Shmop · SimpleXML · SPL · Standard · Tidy · Treewide · XML

원문에 명시된 CVE

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

사용 환경별 확인 순서

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

공식 변경 기록

01 Aug 2024, PHP 8.2.22

  • Core: . Fixed bug GH-13922 (Fixed support for systems with sysconf(_SC_GETPW_R_SIZE_MAX) == -1). (Arnaud) . Fixed bug GH-14626 (Fix is_zend_ptr() for huge blocks). (Arnaud) . Fixed bug GH-14590 (Memory leak in FPM test gh13563-conf-bool-env.phpt. (nielsdos) . Fixed OSS-Fuzz #69765. (nielsdos) . Fixed bug GH-14741 (Segmentation fault in Zend/zend_types.h). (nielsdos) . Fixed bug GH-14969 (Use-after-free in property coercion with __toString()). (ilutov)

  • Dom: . Fixed bug GH-14702 (DOMDocument::xinclude() crash). (nielsdos)

  • Gd: . ext/gd/tests/gh10614.phpt: skip if no PNG support. (orlitzky) . restored warning instead of fata error. (dryabov)

  • LibXML: . Fixed bug GH-14563 (Build failure with libxml2 v2.13.0). (nielsdos)

  • Opcache: . Fixed bug GH-14550 (No warning message when Zend DTrace is enabled that opcache.jit is implictly disabled). (nielsdos)

  • Output: . Fixed bug GH-14808 (Unexpected null pointer in Zend/zend_string.h with empty output buffer). (nielsdos)

  • PDO: . Fixed bug GH-14712 (Crash with PDORow access to null property). (David Carlier)

  • Phar: . Fixed bug GH-14603 (null string from zip entry). (David Carlier)

  • PHPDBG: . Fixed bug GH-14596 (crashes with ASAN and ZEND_RC_DEBUG=1). (David Carlier) . Fixed bug GH-14553 (echo output trimmed at NULL byte). (nielsdos)

  • Shmop: . Fixed bug GH-14537 (shmop Windows 11 crashes the process). (nielsdos)

  • SimpleXML: . Fixed bug GH-14638 (null dereference after XML parsing failure). (David Carlier)

  • SPL: . Fixed bug GH-14639 (Member access within null pointer in ext/spl/spl_observer.c). (nielsdos)

  • Standard: . Fix 32-bit wordwrap test failures. (orlitzky) . Fixed bug GH-14774 (time_sleep_until overflow). (David Carlier)

  • Tidy: . Fix memory leak in tidy_repair_file(). (nielsdos)

  • Treewide: . Fix compatibility with libxml2 2.13.2. (nielsdos)

  • XML: . Move away from to-be-deprecated libxml fields. (nielsdos) . Fixed bug GH-14834 (Error installing PHP when --with-pear is used). (nielsdos)

출처

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

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

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