mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
22 lines
292 B
PHP
22 lines
292 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) {
|
|
["default"]=>
|
|
string(2) "ok"
|
|
}
|
|
array(1) {
|
|
["default"]=>
|
|
string(2) "ok"
|
|
}
|
|
ok
|