1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/variable_with_integer_name.phpt
2015-01-04 17:57:23 +01:00

12 lines
104 B
PHP

--TEST--
Variable with integer name
--FILE--
<?php
${10} = 42;
var_dump(${10});
?>
--EXPECT--
int(42)