12345678910111213141516171819202122232425 |
- --TEST--
- Nullsafe operator on $this
- --FILE--
- <?php
- class Test {
- public $foo = 42;
- public function method() {
- var_dump($this?->foo);
- var_dump($this?->bar());
- }
- public function bar() {
- return 24;
- }
- }
- $test = new Test;
- $test->method();
- ?>
- --EXPECT--
- int(42)
- int(24)
|