mirror of
https://github.com/php/php-src.git
synced 2026-04-06 07:32:54 +02:00
* Emit deprecation warnings when adding dynamic properties to classes during unserialization - this will become an Error in php 9.0. (Adding dynamic properties in other contexts was already a deprecation warning - the use case of unserialization was overlooked) * Throw an error when attempting to add a dynamic property to a `readonly` class when unserializing * Add new serialization methods `__serialize`/`__unserialize` for SplFixedArray to avoid creating deprecated dynamic properties that would then be added to the backing fixed-size array * Don't add named dynamic/declared properties (e.g. $obj->foo) of SplFixedArray to the backing array when unserializing * Update tests to declare properties or to expect the deprecation warning * Add news entry Co-authored-by: Tyson Andre <tysonandre775@hotmail.com>
74 lines
1.3 KiB
PHP
74 lines
1.3 KiB
PHP
--TEST--
|
|
SplFixedArray serialisation
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = new SplFixedArray(5);
|
|
|
|
$obj = new stdClass;
|
|
$obj->prop = 'value';
|
|
|
|
$array[0] = 'foo';
|
|
$array[2] = 42;
|
|
$array[3] = $obj;
|
|
$array[4] = range(1, 5);
|
|
|
|
$array->foo = "bar";
|
|
|
|
$ser = serialize($array);
|
|
echo "$ser\n";
|
|
$unser = unserialize($ser);
|
|
|
|
printf("count: %d\n", count($unser));
|
|
printf("getSize(): %d\n", $unser->getSize());
|
|
|
|
var_dump($unser[0], $unser[1], $unser[2], $unser[3], $unser[4]);
|
|
|
|
$unser[4] = 'quux';
|
|
var_dump($unser[4]);
|
|
var_dump($unser->foo);
|
|
|
|
// __unserialize is a no-op on a non-empty SplFixedArray
|
|
$array = new SplFixedArray(1);
|
|
$array->__unserialize([
|
|
[1],
|
|
[
|
|
"foo" => "bar",
|
|
],
|
|
]);
|
|
var_dump($array);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: Creation of dynamic property SplFixedArray::$foo is deprecated in %s on line %d
|
|
O:13:"SplFixedArray":6:{i:0;s:3:"foo";i:1;N;i:2;i:42;i:3;O:8:"stdClass":1:{s:4:"prop";s:5:"value";}i:4;a:5:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;i:4;i:5;}s:3:"foo";s:3:"bar";}
|
|
|
|
Deprecated: Creation of dynamic property SplFixedArray::$foo is deprecated in %s on line %d
|
|
count: 5
|
|
getSize(): 5
|
|
string(3) "foo"
|
|
NULL
|
|
int(42)
|
|
object(stdClass)#4 (1) {
|
|
["prop"]=>
|
|
string(5) "value"
|
|
}
|
|
array(5) {
|
|
[0]=>
|
|
int(1)
|
|
[1]=>
|
|
int(2)
|
|
[2]=>
|
|
int(3)
|
|
[3]=>
|
|
int(4)
|
|
[4]=>
|
|
int(5)
|
|
}
|
|
string(4) "quux"
|
|
string(3) "bar"
|
|
object(SplFixedArray)#5 (1) {
|
|
[0]=>
|
|
NULL
|
|
}
|