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_boolean_name.phpt
2015-01-04 18:07:44 +01:00

14 lines
134 B
PHP

--TEST--
Variable with boolean name
--FILE--
<?php
${true} = 42;
var_dump(${true});
var_dump(${'1'});
?>
--EXPECT--
int(42)
int(42)