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
|
--TEST--
Asymmetric visibility nested variations
--FILE--
<?php
class Inner {
public int $prop = 1;
public array $array = [];
}
class Test {
public private(set) Inner $prop;
public function init() {
$this->prop = new Inner();
}
}
function r($test) {
echo $test->prop->prop;
}
function w($test) {
$test->prop->prop = 0;
echo 'done';
}
function rw($test) {
$test->prop->prop += 1;
echo 'done';
}
function im($test) {
$test->prop->array[] = 1;
echo 'done';
}
function is($test) {
echo (int) isset($test->prop->prop);
}
function us($test) {
unset($test->prop->prop);
echo 'done';
}
function us_dim($test) {
unset($test->prop->array[0]);
echo 'done';
}
foreach ([true, false] as $init) {
foreach (['r', 'w', 'rw', 'im', 'is', 'us', 'us_dim'] as $op) {
$test = new Test();
if ($init) {
$test->init();
}
echo 'Init: ' . ((int) $init) . ', op: ' . $op . ": ";
try {
$op($test);
} catch (Error $e) {
echo $e->getMessage();
}
echo "\n";
}
}
?>
--EXPECT--
Init: 1, op: r: 1
Init: 1, op: w: done
Init: 1, op: rw: done
Init: 1, op: im: done
Init: 1, op: is: 1
Init: 1, op: us: done
Init: 1, op: us_dim: done
Init: 0, op: r: Typed property Test::$prop must not be accessed before initialization
Init: 0, op: w: Cannot indirectly modify private(set) property Test::$prop from global scope
Init: 0, op: rw: Typed property Test::$prop must not be accessed before initialization
Init: 0, op: im: Cannot indirectly modify private(set) property Test::$prop from global scope
Init: 0, op: is: 0
Init: 0, op: us: done
Init: 0, op: us_dim: done
|