--TEST-- Catch method calls on non-objects with nested calls to namespaced functions with core counterparts --FILE-- method(strlen('Test'))); var_dump($x->method(strlen('Test'), strlen('Test'))); var_dump($x->method([strlen('Test')])); echo "Alive\n"; ?> --EXPECTF-- Called #1 NULL Called #2 NULL Called #3 NULL Alive