Merge branch 'PHP-8.4'

* PHP-8.4:
  Fix sxe test
This commit is contained in:
Niels Dossche 2025-04-11 23:57:03 +02:00
commit fd7ebd4d15
No known key found for this signature in database
GPG key ID: B8A8AD166DF0E2E5

View file

@ -11,8 +11,8 @@ $field = 'abc';
$sxe->$field .= 'hello'; $sxe->$field .= 'hello';
var_dump($sxe->$field); var_dump($sxe->$field);
?> ?>
--EXPECT-- --EXPECTF--
object(SimpleXMLElement)#3 (1) { object(SimpleXMLElement)#%d (1) {
[0]=> [0]=>
string(5) "hello" string(5) "hello"
} }