1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 09:42:22 +01:00
Files
archived-php-src/ext/standard/tests/array/array_flip_variation1.phpt
Gabriel Caruso fef879a2d6 Use bool instead of boolean while throwing a type error
PHP requires boolean typehints to be written "bool" and disallows
"boolean" as an alias. This changes the error messages to match
the actual type name and avoids confusing messages like "must be
of type boolean, boolean given".

This a followup to ce1d69a1f6, which
implements the same change for integer->int.
2018-02-04 23:09:40 +01:00

180 lines
4.0 KiB
PHP

--TEST--
Test array_flip() function : usage variations - unexpected values for 'input' argument
--FILE--
<?php
/* Prototype : array array_flip(array $input)
* Description: Return array with key <-> value flipped
* Source code: ext/standard/array.c
*/
echo "*** Testing array_flip() : usage variations - unexpected values for 'input' ***\n";
//get an unset variable
$unset_var = 10;
unset ($unset_var);
//class definition for object variable
class MyClass
{
public function __toString()
{
return 'object';
}
}
//resource variable
$fp = fopen(__FILE__,'r');
//array of values for 'input' argument
$values = array(
// int data
/*1*/ 0,
1,
12345,
-2345,
// float data
/*5*/ 10.5,
-10.5,
10.5e10,
10.6E-10,
.5,
// null data
/*10*/ NULL,
null,
// boolean data
/*12*/ true,
false,
TRUE,
/*15*/ FALSE,
// empty data
"",
'',
// string data
"string",
'string',
// object data
/*20*/ new MyClass(),
// undefined data
@$undefined_var,
// unset data
@$unset_var,
//resource data
/*23*/ $fp
);
// loop through each element of $values for 'input' argument
for($count = 0; $count < count($values); $count++) {
echo "-- Iteration ".($count + 1). " --\n";
var_dump( array_flip($values[$count]) );
};
//closing resource
fclose($fp);
echo "Done"
?>
--EXPECTF--
*** Testing array_flip() : usage variations - unexpected values for 'input' ***
-- Iteration 1 --
Warning: array_flip() expects parameter 1 to be array, int given in %s on line %d
NULL
-- Iteration 2 --
Warning: array_flip() expects parameter 1 to be array, int given in %s on line %d
NULL
-- Iteration 3 --
Warning: array_flip() expects parameter 1 to be array, int given in %s on line %d
NULL
-- Iteration 4 --
Warning: array_flip() expects parameter 1 to be array, int given in %s on line %d
NULL
-- Iteration 5 --
Warning: array_flip() expects parameter 1 to be array, float given in %s on line %d
NULL
-- Iteration 6 --
Warning: array_flip() expects parameter 1 to be array, float given in %s on line %d
NULL
-- Iteration 7 --
Warning: array_flip() expects parameter 1 to be array, float given in %s on line %d
NULL
-- Iteration 8 --
Warning: array_flip() expects parameter 1 to be array, float given in %s on line %d
NULL
-- Iteration 9 --
Warning: array_flip() expects parameter 1 to be array, float given in %s on line %d
NULL
-- Iteration 10 --
Warning: array_flip() expects parameter 1 to be array, null given in %s on line %d
NULL
-- Iteration 11 --
Warning: array_flip() expects parameter 1 to be array, null given in %s on line %d
NULL
-- Iteration 12 --
Warning: array_flip() expects parameter 1 to be array, bool given in %s on line %d
NULL
-- Iteration 13 --
Warning: array_flip() expects parameter 1 to be array, bool given in %s on line %d
NULL
-- Iteration 14 --
Warning: array_flip() expects parameter 1 to be array, bool given in %s on line %d
NULL
-- Iteration 15 --
Warning: array_flip() expects parameter 1 to be array, bool given in %s on line %d
NULL
-- Iteration 16 --
Warning: array_flip() expects parameter 1 to be array, string given in %s on line %d
NULL
-- Iteration 17 --
Warning: array_flip() expects parameter 1 to be array, string given in %s on line %d
NULL
-- Iteration 18 --
Warning: array_flip() expects parameter 1 to be array, string given in %s on line %d
NULL
-- Iteration 19 --
Warning: array_flip() expects parameter 1 to be array, string given in %s on line %d
NULL
-- Iteration 20 --
Warning: array_flip() expects parameter 1 to be array, object given in %s on line %d
NULL
-- Iteration 21 --
Warning: array_flip() expects parameter 1 to be array, null given in %s on line %d
NULL
-- Iteration 22 --
Warning: array_flip() expects parameter 1 to be array, null given in %s on line %d
NULL
-- Iteration 23 --
Warning: array_flip() expects parameter 1 to be array, resource given in %s on line %d
NULL
Done