forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Repeat dynamic property check after __isset for ??
Fixes phpGH-12695
- Loading branch information
Showing
3 changed files
with
82 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--TEST-- | ||
Coalesce IS fetch should repeat dynamic property check after __isset | ||
--FILE-- | ||
<?php | ||
#[AllowDynamicProperties] | ||
class A { | ||
public function __isset($prop) { | ||
echo __FUNCTION__, "\n"; | ||
$this->$prop = 123; | ||
unset($GLOBALS['a']); | ||
return true; | ||
} | ||
public function __get($prop) { | ||
throw new Exception('Unreachable'); | ||
} | ||
} | ||
|
||
$a = new A; | ||
echo $a->foo ?? 234; | ||
?> | ||
--EXPECT-- | ||
__isset | ||
123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--TEST-- | ||
Coalesce IS fetch should repeat dynamic property check after __isset | ||
--FILE-- | ||
<?php | ||
class A { | ||
public int $foo; | ||
public function __isset($prop) { | ||
echo __FUNCTION__, "\n"; | ||
$this->$prop = 123; | ||
unset($GLOBALS['a']); | ||
return true; | ||
} | ||
public function __get($prop) { | ||
throw new Exception('Unreachable'); | ||
} | ||
} | ||
|
||
$a = new A; | ||
unset($a->foo); | ||
echo $a->foo ?? 234; | ||
?> | ||
--EXPECT-- | ||
__isset | ||
123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters