php-src/ext/standard/tests/array/array_combine_variation5.phpt

187 lines
3.9 KiB
Plaintext
Raw Normal View History

--TEST--
2007-11-28 03:46:25 +00:00
Test array_combine() function : usage variations - associative array with different values(Bug#43424)
--FILE--
<?php
/* Prototype : array array_combine(array $keys, array $values)
* Description: Creates an array by using the elements of the first parameter as keys
* and the elements of the second as the corresponding values
* Source code: ext/standard/array.c
*/
/*
* Testing the functionality of array_combine() by passing various
* associative arrays having different possible values to $keys argument and
* associative arrays having different possible values to $values argument.
*/
echo "*** Testing array_combine() : assoc array with diff values to both \$keys and \$values argument ***\n";
// get an unset variable
$unset_var = 10;
unset ($unset_var);
// get a resource variable
$fp = fopen(__FILE__, "r");
// get a class
class classA
{
public function __toString(){
return "Class A object";
}
}
// get a heredoc string
$heredoc = <<<EOT
Hello world
EOT;
// different variations of associative array
$arrays = array (
// empty array
/*1*/ array(),
// arrays with integer values
array('0' => 0),
array("1" => 1),
array("one" => 1, 'two' => 2, "three" => 3, 4 => 4),
// arrays with float values
/*5*/ array("float" => 2.3333),
array("f1" => 1.2, 'f2' => 3.33, 3 => 4.89999922839999, 'f4' => 33333333.333),
// arrays with string values
/*7*/ array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "pen\n"),
array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => 'pen\n'),
array(1 => "hello", "heredoc" => $heredoc),
// array with object, unset variable and resource variable
/*10*/ array(11 => new classA(), "unset" => @$unset_var, "resource" => $fp),
// array with mixed values
/*11*/ array(1 => 'hello', 2 => new classA(), 222 => "fruit",
'resource' => $fp, "int" => 133, "float" => 444.432,
"unset" => @$unset_var, "heredoc" => $heredoc)
);
// loop through each sub-array within $arrays to check the behavior of array_combine()
$iterator = 1;
foreach($arrays as $array) {
echo "-- Iteration $iterator --\n";
var_dump( array_combine($array, $array) );
$iterator++;
}
// close the file resource used
fclose($fp);
echo "Done";
?>
--EXPECTF--
*** Testing array_combine() : assoc array with diff values to both $keys and $values argument ***
-- Iteration 1 --
Warning: array_combine(): Both parameters should have at least 1 element in %s on line %d
bool(false)
-- Iteration 2 --
array(1) {
[0]=>
int(0)
}
-- Iteration 3 --
array(1) {
[1]=>
int(1)
}
-- Iteration 4 --
array(4) {
[1]=>
int(1)
[2]=>
int(2)
[3]=>
int(3)
[4]=>
int(4)
}
-- Iteration 5 --
array(1) {
2008-03-19 14:55:58 +00:00
[u"2.3333"]=>
float(2.3333)
}
-- Iteration 6 --
array(4) {
2008-03-19 14:55:58 +00:00
[u"1.2"]=>
float(1.2)
2008-03-19 14:55:58 +00:00
[u"3.33"]=>
float(3.33)
2008-03-19 14:55:58 +00:00
[u"4.8999992284"]=>
float(4.8999992284)
2008-03-19 14:55:58 +00:00
[u"33333333.333"]=>
float(33333333.333)
}
-- Iteration 7 --
array(4) {
[u" Hello"]=>
unicode(6) " Hello"
[u"col or"]=>
unicode(6) "col or"
[u" world"]=>
unicode(7) " world"
[u"pen
"]=>
unicode(4) "pen
"
}
-- Iteration 8 --
array(4) {
[u"\tHello"]=>
unicode(7) "\tHello"
[u"col\tor"]=>
unicode(7) "col\tor"
[u"\v\fworld"]=>
unicode(9) "\v\fworld"
[u"pen\n"]=>
unicode(5) "pen\n"
}
-- Iteration 9 --
array(2) {
[u"hello"]=>
unicode(5) "hello"
[u"Hello world"]=>
unicode(11) "Hello world"
}
-- Iteration 10 --
array(3) {
[u"Class A object"]=>
object(classA)#%d (0) {
}
[u""]=>
NULL
[u"Resource id #%d"]=>
resource(%d) of type (stream)
}
-- Iteration 11 --
array(8) {
[u"hello"]=>
unicode(5) "hello"
[u"Class A object"]=>
object(classA)#%d (0) {
}
[u"fruit"]=>
unicode(5) "fruit"
[u"Resource id #%d"]=>
resource(%d) of type (stream)
[133]=>
int(133)
2008-03-19 14:55:58 +00:00
[u"444.432"]=>
float(444.432)
[u""]=>
NULL
[u"Hello world"]=>
unicode(11) "Hello world"
}
Done