summaryrefslogtreecommitdiff
path: root/Zend/tests/this_in_extract.phpt
blob: 9903d7d794fcd19a24e1029cc1ea0d58da3a7314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
$this re-assign in extract()
--FILE--
<?php
function foo() {
    try {
        extract(["this"=>42, "a"=>24]);
    } catch (Error $e) {
        echo $e->getMessage(), "\n";
    }
    var_dump($a);
}
foo();
?>
--EXPECTF--
Cannot re-assign $this

Notice: Undefined variable: a in %s on line %d
NULL