1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/reflection/tests/bug40431.phpt
Nikita Popov 902d64390e Deprecate implicit dynamic properties
Writing to a proprety that hasn't been declared is deprecated,
unless the class uses the #[AllowDynamicProperties] attribute or
defines __get()/__set().

RFC: https://wiki.php.net/rfc/deprecate_dynamic_properties
2021-11-26 14:10:11 +01:00

140 lines
2.3 KiB
PHP

--TEST--
Bug #40431 (dynamic properties may cause crash in ReflectionProperty methods)
--FILE--
<?php
echo "=== 1st test ===\n";
$Obj = new stdClass;
$Obj->value = 'value';
$RefObj = new ReflectionObject($Obj);
$props = $RefObj->getProperties();
var_dump($props);
var_dump($props[0]->isStatic());
var_dump($props[0]->isPrivate());
var_dump($props[0]->isPublic());
var_dump($props[0]->isProtected());
echo "=== 2nd test ===\n";
class test1 {
}
#[AllowDynamicProperties]
class test2 extends test1{
}
$Obj = new test2;
$Obj->value = 'value';
$RefObj = new ReflectionObject($Obj);
$props = $RefObj->getProperties();
var_dump($props);
var_dump($props[0]->isStatic());
var_dump($props[0]->isPrivate());
var_dump($props[0]->isPublic());
var_dump($props[0]->isProtected());
echo "=== 3rd test ===\n";
#[AllowDynamicProperties]
class test3 {
}
$Obj = new test3;
$Obj->value = 'value';
$RefObj = new ReflectionObject($Obj);
$props = $RefObj->getProperties();
var_dump($props);
var_dump($props[0]->isStatic());
var_dump($props[0]->isPrivate());
var_dump($props[0]->isPublic());
var_dump($props[0]->isProtected());
echo "=== 4th test ===\n";
class test5 {
private $value = 1;
}
#[AllowDynamicProperties]
class test4 extends test5{
}
$Obj = new test4;
$Obj->value = 'value';
$RefObj = new ReflectionObject($Obj);
$props = $RefObj->getProperties();
var_dump($props);
var_dump($props[0]->isStatic());
var_dump($props[0]->isPrivate());
var_dump($props[0]->isPublic());
var_dump($props[0]->isProtected());
echo "Done\n";
?>
--EXPECTF--
=== 1st test ===
array(1) {
[0]=>
object(ReflectionProperty)#%d (2) {
["name"]=>
string(5) "value"
["class"]=>
string(8) "stdClass"
}
}
bool(false)
bool(false)
bool(true)
bool(false)
=== 2nd test ===
array(1) {
[0]=>
object(ReflectionProperty)#%d (2) {
["name"]=>
string(5) "value"
["class"]=>
string(5) "test2"
}
}
bool(false)
bool(false)
bool(true)
bool(false)
=== 3rd test ===
array(1) {
[0]=>
object(ReflectionProperty)#%d (2) {
["name"]=>
string(5) "value"
["class"]=>
string(5) "test3"
}
}
bool(false)
bool(false)
bool(true)
bool(false)
=== 4th test ===
array(1) {
[0]=>
object(ReflectionProperty)#%d (2) {
["name"]=>
string(5) "value"
["class"]=>
string(5) "test4"
}
}
bool(false)
bool(false)
bool(true)
bool(false)
Done