--TEST-- Test get_class() function : usage variations - passing unexpected types. --FILE-- 'red', 'item' => 'pen'), // null data NULL, null, // boolean data true, false, TRUE, FALSE, // empty data "", '', // string data "string", 'string', // undefined data $undefined_var, // unset data $unset_var, ); // loop through each element of the array for object foreach($values as $value) { echo @"\nArg value: $value (type: " . gettype($value) . ")\n"; var_dump( get_class($value) ); }; echo "Done"; ?> --EXPECTF-- *** Testing get_class() : usage variations *** Notice: Undefined variable: undefined_var in %sget_class_variation_001.php on line 58 Notice: Undefined variable: unset_var in %sget_class_variation_001.php on line 61 Arg value: 0 (type: integer) Warning: get_class() expects parameter 1 to be object, integer given in %sget_class_variation_001.php on line %d bool(false) Arg value: 1 (type: integer) Warning: get_class() expects parameter 1 to be object, integer given in %sget_class_variation_001.php on line %d bool(false) Arg value: 12345 (type: integer) Warning: get_class() expects parameter 1 to be object, integer given in %sget_class_variation_001.php on line %d bool(false) Arg value: -2345 (type: integer) Warning: get_class() expects parameter 1 to be object, integer given in %sget_class_variation_001.php on line %d bool(false) Arg value: 10.5 (type: double) Warning: get_class() expects parameter 1 to be object, double given in %sget_class_variation_001.php on line %d bool(false) Arg value: -10.5 (type: double) Warning: get_class() expects parameter 1 to be object, double given in %sget_class_variation_001.php on line %d bool(false) Arg value: 101234567000 (type: double) Warning: get_class() expects parameter 1 to be object, double given in %sget_class_variation_001.php on line %d bool(false) Arg value: 1.07654321E-9 (type: double) Warning: get_class() expects parameter 1 to be object, double given in %sget_class_variation_001.php on line %d bool(false) Arg value: 0.5 (type: double) Warning: get_class() expects parameter 1 to be object, double given in %sget_class_variation_001.php on line %d bool(false) Arg value: Array (type: array) Warning: get_class() expects parameter 1 to be object, array given in %sget_class_variation_001.php on line %d bool(false) Arg value: Array (type: array) Warning: get_class() expects parameter 1 to be object, array given in %sget_class_variation_001.php on line %d bool(false) Arg value: Array (type: array) Warning: get_class() expects parameter 1 to be object, array given in %sget_class_variation_001.php on line %d bool(false) Arg value: Array (type: array) Warning: get_class() expects parameter 1 to be object, array given in %sget_class_variation_001.php on line %d bool(false) Arg value: Array (type: array) Warning: get_class() expects parameter 1 to be object, array given in %sget_class_variation_001.php on line %d bool(false) Arg value: (type: NULL) Warning: get_class() called without object from outside a class in %sget_class_variation_001.php on line %d bool(false) Arg value: (type: NULL) Warning: get_class() called without object from outside a class in %sget_class_variation_001.php on line %d bool(false) Arg value: 1 (type: boolean) Warning: get_class() expects parameter 1 to be object, boolean given in %sget_class_variation_001.php on line %d bool(false) Arg value: (type: boolean) Warning: get_class() expects parameter 1 to be object, boolean given in %sget_class_variation_001.php on line %d bool(false) Arg value: 1 (type: boolean) Warning: get_class() expects parameter 1 to be object, boolean given in %sget_class_variation_001.php on line %d bool(false) Arg value: (type: boolean) Warning: get_class() expects parameter 1 to be object, boolean given in %sget_class_variation_001.php on line %d bool(false) Arg value: (type: string) Warning: get_class() expects parameter 1 to be object, string given in %sget_class_variation_001.php on line %d bool(false) Arg value: (type: string) Warning: get_class() expects parameter 1 to be object, string given in %sget_class_variation_001.php on line %d bool(false) Arg value: string (type: string) Warning: get_class() expects parameter 1 to be object, string given in %sget_class_variation_001.php on line %d bool(false) Arg value: string (type: string) Warning: get_class() expects parameter 1 to be object, string given in %sget_class_variation_001.php on line %d bool(false) Arg value: (type: NULL) Warning: get_class() called without object from outside a class in %sget_class_variation_001.php on line %d bool(false) Arg value: (type: NULL) Warning: get_class() called without object from outside a class in %sget_class_variation_001.php on line %d bool(false) Done