summaryrefslogtreecommitdiff
path: root/Zend/tests/variable_with_integer_name.phpt
blob: c31d46941b6f75c38ee73046028df720dffcae3c (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Variable with integer name
--FILE--
<?php

${10} = 42;
var_dump(${10});

?>
--EXPECT--
int(42)