Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/
Upload File :
Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/this_in_catch.phpt

--TEST--
$this in catch
--FILE--
<?php
class C {
	function foo() {
		try {
			throw new Exception();
		} catch (Exception $this) {
		}
		var_dump($this);
	}
}
$obj = new C;
$obj->foo();
?>
--EXPECTF--
Fatal error: Cannot re-assign $this in %sthis_in_catch.php on line 6