summaryrefslogtreecommitdiff
path: root/Zend/tests/this_as_global.phpt
blob: 0ba9ade1b938856d5e63967e0f15d47c56c92f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
$this as global variable
--FILE--
<?php
function foo() {
	global $this;
	var_dump($this);
}
foo();
?>
--EXPECTF--
Fatal error: Cannot use $this as global variable in %sthis_as_global.php on line 3