mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
12 lines
191 B
PHP
12 lines
191 B
PHP
--TEST--
|
|
$this as parameter
|
|
--FILE--
|
|
<?php
|
|
function foo($this) {
|
|
var_dump($this);
|
|
}
|
|
foo(5);
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use $this as parameter in %sthis_as_parameter.php on line 2
|