php-src/Zend/tests/unset_cv11.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

22 lines
296 B
PHP

--TEST--
unset() CV 11 (unset() of copy destoies original value)
--FILE--
<?php
$x = array("default"=>"ok");
var_dump($x);
$cf = $x;
unset($cf['default']);
var_dump($x);
echo "ok\n";
?>
--EXPECT--
array(1) {
[u"default"]=>
unicode(2) "ok"
}
array(1) {
[u"default"]=>
unicode(2) "ok"
}
ok