mirror of
https://github.com/php/php-src.git
synced 2024-12-25 09:49:08 +08:00
12 lines
104 B
Plaintext
12 lines
104 B
Plaintext
|
--TEST--
|
||
|
Variable with integer name
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
${10} = 42;
|
||
|
var_dump(${10});
|
||
|
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
int(42)
|