--TEST--
Test get_class() function : usage variations  - passing unexpected types.
--FILE--
<?php
/* Prototype  : proto string get_class([object object])
 * Description: Retrieves the class name 
 * Source code: Zend/zend_builtin_functions.c
 * Alias to functions: 
 */

echo "*** Testing get_class() : usage variations ***\n";

//  Note: basic use cases in Zend/tests/009.phpt

//get an unset variable
$unset_var 10;
unset (
$unset_var);

//array of values to iterate over
$values = array(

      
// int data
      
0,
      
1,
      
12345,
      -
2345,

      
// float data
      
10.5,
      -
10.5,
      
10.1234567e10,
      
10.7654321E-10,
      
.5,

      
// array data
      
array(),
      array(
0),
      array(
1),
      array(
12),
      array(
'color' => '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_dumpget_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