mirror of
https://github.com/php/php-src.git
synced 2024-12-13 11:54:45 +08:00
11 lines
158 B
PHP
11 lines
158 B
PHP
--TEST--
|
|
Bug #38211 (variable name and cookie name match breaks script execution)
|
|
--FILE--
|
|
<?php
|
|
$test = 'test';
|
|
unset($$test);
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|