summaryrefslogtreecommitdiff
path: root/Zend/tests/bug38211.phpt
blob: 6ae9430e8bb7cb6e537f0e93f6eb0639acf51cee (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Bug #38211 (variable name and cookie name match breaks script execution)
--FILE--
<?php
$test = 'test';
unset($$test);
echo "ok\n";
?>
--EXPECT--
ok