--TEST-- Bug #32429 (method_exists() always return TRUE if __call method exists) --FILE-- test(); } } public function __call($name, $args) { throw new Exception('Call to undefined method'.get_class($this).'::'.$name.'()'); } } try { $test = new TestClass; } catch (Exception $e) { exit($e->getMessage()); } ?> --EXPECT-- bool(false)