mirror of
https://github.com/php/php-src.git
synced 2024-12-13 20:05:26 +08:00
14 lines
134 B
PHP
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)
|