summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/extract_safety.phpt
blob: a9200d25c4db344cc68939272a92200696e86859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
Test extract() for overwrite of GLOBALS
--FILE--
<?php
$str = "John";
var_dump($GLOBALS["str"]);

/* Extracting Global Variables */
$splat = array("foo" => "bar");
var_dump(extract(array("GLOBALS" => $splat, EXTR_OVERWRITE)));

unset ($splat);

var_dump($GLOBALS["str"]);

echo "\nDone";
?>
--EXPECT--
string(4) "John"
int(1)
string(4) "John"

Done