php-8.0.30-src/Zend/tests/bug38211.phpt

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