summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_fill_variation3.phpt
blob: d7352d495d64293c5fc5756119c42871a5e69f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
--TEST--
Test array_fill() function : usage variations  - unexpected values for 'val' argument
--FILE--
<?php
/*
 * testing array_fill() by passing different unexpected values for 'val' argument
 */

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

// Initialise function arguments not being substituted
$start_key = 0;
$num = 2;

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

// define a class
class test
{
  var $t = 10;
  function __toString()
  {
    return "testObject";
  }
}


//array of different values for 'val' argument
$values = array(
            // empty string
  /* 1  */  "",
            '',
            // objects
  /* 3  */  new test(),

            // undefined variable
            @$undefined_var,

            // unset variable
  /* 5  */  @$unset_var,
);

// loop through each element of the array for 'val' argument
// check the working of array_fill()
echo "--- Testing array_fill() with different values for 'val' argument ---\n";
$counter = 1;
for($index = 0; $index < count($values); $index ++)
{
  echo "-- Iteration $counter --\n";
  $val = $values[$index];

  var_dump( array_fill($start_key , $num , $val) );

  $counter++;
}

echo"Done";
?>
--EXPECTF--
*** Testing array_fill() : usage variations ***
--- Testing array_fill() with different values for 'val' argument ---
-- Iteration 1 --
array(2) {
  [0]=>
  string(0) ""
  [1]=>
  string(0) ""
}
-- Iteration 2 --
array(2) {
  [0]=>
  string(0) ""
  [1]=>
  string(0) ""
}
-- Iteration 3 --
array(2) {
  [0]=>
  object(test)#%d (1) {
    ["t"]=>
    int(10)
  }
  [1]=>
  object(test)#%d (1) {
    ["t"]=>
    int(10)
  }
}
-- Iteration 4 --
array(2) {
  [0]=>
  NULL
  [1]=>
  NULL
}
-- Iteration 5 --
array(2) {
  [0]=>
  NULL
  [1]=>
  NULL
}
Done