--TEST-- Test array_map() function : usage variations - object functionality --FILE-- ===DONE=== --EXPECTF-- *** Testing array_map() : object functionality *** -- simple class with public variable and method -- SimpleClass::square Strict Standards: array_map() expects parameter 1 to be a valid callback, non-static method SimpleClass::square() should not be called statically in %sarray_map_object1.php on line %d array(2) { [0]=> int(1) [1]=> int(4) } -- simple class with private variable and method -- SimpleClassPri::add Warning: array_map() expects parameter 1 to be a valid callback, cannot access private method SimpleClassPri::add() in %sarray_map_object1.php on line %d NULL -- simple class with protected variable and method -- SimpleClassPro::mul Warning: array_map() expects parameter 1 to be a valid callback, cannot access protected method SimpleClassPro::mul() in %sarray_map_object1.php on line %d NULL -- class without members -- EmptyClass Warning: array_map() expects parameter 1 to be a valid callback, array must have exactly two members in %sarray_map_object1.php on line %d NULL -- abstract class -- ChildClass::emptyFunction Strict Standards: array_map() expects parameter 1 to be a valid callback, non-static method ChildClass::emptyFunction() should not be called statically in %sarray_map_object1.php on line %d defined in child defined in child array(2) { [0]=> NULL [1]=> NULL } -- class with final method -- FinalClass::finalMethod Strict Standards: array_map() expects parameter 1 to be a valid callback, non-static method FinalClass::finalMethod() should not be called statically in %sarray_map_object1.php on line %d This function can't be overloaded This function can't be overloaded array(2) { [0]=> NULL [1]=> NULL } -- class with static members -- StaticClass::square array(2) { [0]=> int(1) [1]=> int(4) } StaticClass::cube Warning: array_map() expects parameter 1 to be a valid callback, cannot access private method StaticClass::cube() in %sarray_map_object1.php on line %d NULL StaticClass::retVal Warning: array_map() expects parameter 1 to be a valid callback, cannot access protected method StaticClass::retVal() in %sarray_map_object1.php on line %d NULL -- class implementing an interface -- InterClass::square array(2) { [0]=> int(1) [1]=> int(4) } ===DONE===