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

${true} = 42;
var_dump(${true});
var_dump(${'1'});

?>
--EXPECT--
int(42)
int(42)