1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
--TEST--
Unsetting and recreating private properties.
--FILE--
<?php
class C {
private $p = 'test';
function unsetPrivate() {
unset($this->p);
}
function setPrivate() {
$this->p = 'changed';
}
}
#[AllowDynamicProperties]
class D extends C {
function setP() {
$this->p = 'changed in D';
}
}
echo "Unset and recreate a superclass's private property:\n";
$d = new D;
$d->unsetPrivate();
$d->setPrivate();
var_dump($d);
echo "\nUnset superclass's private property, and recreate it as public in subclass:\n";
$d = new D;
$d->unsetPrivate();
$d->setP();
var_dump($d);
echo "\nUnset superclass's private property, and recreate it as public at global scope:\n";
$d = new D;
$d->unsetPrivate();
$d->p = 'this will create a public property';
var_dump($d);
echo "\n\nUnset and recreate a private property:\n";
$c = new C;
$c->unsetPrivate();
$c->setPrivate();
var_dump($c);
echo "\nUnset a private property, and attempt to recreate at global scope (expecting failure):\n";
$c = new C;
$c->unsetPrivate();
$c->p = 'this will fail';
var_dump($c);
?>
===DONE===
--EXPECTF--
Unset and recreate a superclass's private property:
object(D)#%d (1) {
["p":"C":private]=>
string(7) "changed"
}
Unset superclass's private property, and recreate it as public in subclass:
object(D)#%d (1) {
["p"]=>
string(12) "changed in D"
}
Unset superclass's private property, and recreate it as public at global scope:
object(D)#%d (1) {
["p"]=>
string(34) "this will create a public property"
}
Unset and recreate a private property:
object(C)#%d (1) {
["p":"C":private]=>
string(7) "changed"
}
Unset a private property, and attempt to recreate at global scope (expecting failure):
Fatal error: Uncaught Error: Cannot access private property C::$p in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d
|