Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ PHP 8.6 UPGRADE NOTES
- Phar:
. Phar::mungServer() now supports reference values.

- Zip:
. ZipArchive::extractTo now raises a TypeError for the
files argument if one or more of the entries is not
a string.

========================================
6. New Functions
========================================
Expand Down
4 changes: 4 additions & 0 deletions ext/gd/tests/gh19955.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ GH-19955: (imagefttext() memory leak)
gd
--CREDITS--
YuanchengJiang
--SKIPIF--
<?php
if(!function_exists('imagefttext')) die('skip imagefttext() not available');
?>
--FILE--
<?php
ini_set('error_reporting', E_ALL&~E_WARNING);
Expand Down
Loading