1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

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

View File

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