<?php
class Foo
{
static public function isFoo()
{
return $this instanceof Foo;
}
}
class Bar
{
public function doSomething()
{
return Foo::isFoo();
}
}
$bar = new Bar;
var_dump($bar->doSomething());
Fatal error: Uncaught Error: Using $this when not in object context in /in/khW9Q:6
Stack trace:
#0 /in/khW9Q(14): Foo::isFoo()
#1 /in/khW9Q(19): Bar->doSomething()
#2 {main}
thrown in /in/khW9Q on line 6
Process exited with code 255.
Notice: Undefined variable: this in /in/khW9Q on line 6
bool(false)
Output for 5.0.0 - 5.0.3
Notice: Undefined variable: this in /in/khW9Q on line 6
bool(false)
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/khW9Q on line 4
Process exited with code 255.
Parse error: parse error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/khW9Q on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/khW9Q on line 4
Process exited with code 255.