mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
ext/spl: Deprecate ArrayObject and ArrayIterator with objects (#19420)
RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_arrayobject_and_arrayiterator_with_objects This also moves tests into a subfolder.
This commit is contained in:
committed by
GitHub
parent
9c754baa99
commit
fb87b14b6c
@@ -0,0 +1,83 @@
|
||||
--TEST--
|
||||
SPL: ArrayObject::__construct: check impact of ArrayObject::STD_PROP_LIST on var_dump.
|
||||
--FILE--
|
||||
<?php
|
||||
class MyArrayObject extends ArrayObject {
|
||||
private $priv1 = 'secret1';
|
||||
public $pub1 = 'public1';
|
||||
}
|
||||
|
||||
$ao = new ArrayObject(array(1,2,3));
|
||||
$ao->p = 1;
|
||||
var_dump($ao);
|
||||
|
||||
$ao = new ArrayObject(array(1,2,3), ArrayObject::STD_PROP_LIST);
|
||||
$ao->p = 1;
|
||||
var_dump($ao);
|
||||
|
||||
$ao = new MyArrayObject(array(1,2,3));
|
||||
var_dump($ao);
|
||||
|
||||
$ao = new MyArrayObject(array(1,2,3), ArrayObject::STD_PROP_LIST);
|
||||
var_dump($ao);
|
||||
?>
|
||||
--EXPECTF--
|
||||
Deprecated: Creation of dynamic property ArrayObject::$p is deprecated in %s on line %d
|
||||
object(ArrayObject)#1 (2) {
|
||||
["p"]=>
|
||||
int(1)
|
||||
["storage":"ArrayObject":private]=>
|
||||
array(3) {
|
||||
[0]=>
|
||||
int(1)
|
||||
[1]=>
|
||||
int(2)
|
||||
[2]=>
|
||||
int(3)
|
||||
}
|
||||
}
|
||||
|
||||
Deprecated: Creation of dynamic property ArrayObject::$p is deprecated in %s on line %d
|
||||
object(ArrayObject)#2 (2) {
|
||||
["p"]=>
|
||||
int(1)
|
||||
["storage":"ArrayObject":private]=>
|
||||
array(3) {
|
||||
[0]=>
|
||||
int(1)
|
||||
[1]=>
|
||||
int(2)
|
||||
[2]=>
|
||||
int(3)
|
||||
}
|
||||
}
|
||||
object(MyArrayObject)#1 (3) {
|
||||
["priv1":"MyArrayObject":private]=>
|
||||
string(7) "secret1"
|
||||
["pub1"]=>
|
||||
string(7) "public1"
|
||||
["storage":"ArrayObject":private]=>
|
||||
array(3) {
|
||||
[0]=>
|
||||
int(1)
|
||||
[1]=>
|
||||
int(2)
|
||||
[2]=>
|
||||
int(3)
|
||||
}
|
||||
}
|
||||
object(MyArrayObject)#2 (3) {
|
||||
["priv1":"MyArrayObject":private]=>
|
||||
string(7) "secret1"
|
||||
["pub1"]=>
|
||||
string(7) "public1"
|
||||
["storage":"ArrayObject":private]=>
|
||||
array(3) {
|
||||
[0]=>
|
||||
int(1)
|
||||
[1]=>
|
||||
int(2)
|
||||
[2]=>
|
||||
int(3)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user