### Description The following code: ```php <?php $a = "test\0test"; $$a; ``` https://3v4l.org/vSKAO#v8.3.1 Resulted in this output: ``` Warning: Undefined variable $test in /in/vSKAO on line 5 ``` But I expected this output instead: ``` Warning: Undefined variable $test\0test in /in/vSKAO on line 5 ``` Or even: ``` Warning: Undefined variable $testtest in /in/vSKAO on line 5 ``` ### PHP Version PHP 8.3.1 ### Operating System _No response_