--TEST-- Bug #47851 (is_callable throws fatal error) --FILE-- getMessage(), "\n"; } var_dump(is_callable(array('Exception','getMessage'))); try { Exception::getMessage(); } catch (Error $e) { echo $e->getMessage(), "\n"; } ?> --EXPECT-- bool(false) Non-static method foo::bar() cannot be called statically bool(false) Non-static method Exception::getMessage() cannot be called statically