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