Home
last modified time | relevance | path

Searched refs:array (Results 201 – 225 of 6726) sorted by path

12345678910>>...270

/php-src/Zend/tests/
H A Dbug46409.phpt15 $a = array(1, 2);
H A Dbug46701.phpt2 Bug #46701 (Creating associative array with long values in the key fails on 32bit linux)
8 $test_array = array(
35 array(3) {
48 array(1) {
H A Dbug47165.phpt6 var $bar = array();
H A Dbug47353.phpt10 $myArray = array();
14 $myArray[$i] = array();
H A Dbug47572.phpt7 public static $bar = array(
H A Dbug47836.phpt2 Bug #47836 (array operator [] inconsistency when the array has PHP_INT_MAX index value)
16 Cannot add element to the array as the next element is already occupied
17 array(1) {
H A Dbug47880.phpt11 call_user_func_array(array('bomb', 'go'), array(0));
H A Dbug48409.phpt15 return array('foo' => 'xyz');
34 $item = array('foo' => 'bar');
H A Dbug48770.phpt18 call_user_func_array(array($this, 'parent::func'), array($arg));
H A Dbug48770_2.phpt23 call_user_func_array(array($this, 'parent::func2'), array($str));
24 call_user_func_array(array($this, 'parent::func3'), array($str));
27 call_user_func_array(array($this, 'parent::func22'), array($str));
33 call_user_func_array(array($this, 'parent::inexistent'), array($str));
H A Dbug48770_3.phpt20 call_user_func_array(array($this, 'self::func2'), array($str));
21 call_user_func_array(array($this, 'self::func3'), array($str));
24 call_user_func_array(array($this, 'self::inexistent'), array($str));
H A Dbug48899-deprecated.phpt10 var_dump(is_callable(array($this, 'parent::testIsCallable')));
13 var_dump(is_callable(array($this, 'static::testIsCallable2')));
H A Dbug48899.phpt10 var_dump(is_callable(array('ParentClass', 'testIsCallable')));
13 var_dump(is_callable(array('ChildClass', 'testIsCallable2')));
H A Dbug48912.phpt12 test(array('x' => 1));
H A Dbug50255.phpt2 Bug #50255 (isset() and empty() silently casts array to object)
6 $arr = array('foo' => 'bar');
H A Dbug50394.phpt15 $args = array( &$arg );
17 call_user_func_array( array( $proxy, 'bar' ), $args );
18 call_user_func_array( array( $proxy, 'bar' ), array(&$arg) );
H A Dbug50816.phpt2 Bug #50816 (Using class constants in array definition fails)
12 public static $mapWithConst = array(self::ONE => 'one', self::TWO => 'two',);
14 public static $mapWithConst1 = array(1 => 'one', self::TWO => 'two',);
15 public static $mapWithConst2 = array(self::ONE => 'one', 1 => 'two',);
17 public static $mapWithoutConst = array(1 => 'one', 1 => 'two',);
20 $mapWithConst = array(1 => 'one', 1 => 'two',);
22 $mapWithoutConst = array(Foo::ONE => 'one', Foo::TWO => 'two',);
23 $mapWithoutConst0 = array(1 => 'one', 1 => 'two',);
24 $mapWithoutConst1 = array(ONE => 'one', 1 => 'two',);
25 $mapWithoutConst2 = array(1 => 'one', TWO => 'two',);
[all …]
H A Dbug52041.phpt74 Warning: Undefined array key 0 in %s on line %d
78 Warning: Undefined array key 0 in %s on line %d
80 Warning: Undefined array key 0 in %s on line %d
84 Warning: Undefined array key 0 in %s on line %d
88 Warning: Undefined array key 0 in %s on line %d
90 Warning: Undefined array key 0 in %s on line %d
H A Dbug52193.phpt2 Bug #52193 (converting closure to array yields empty array)
6 var_dump((array) 1);
28 array(1) {
32 array(0) {
34 array(0) {
36 array(1) {
48 array(1) {
58 array(1) {
82 array(1) {
97 array(1) {
[all …]
H A Dbug52508.phpt17 array(1) {
H A Dbug52614.phpt7 public $a2 = array();
21 $this->a3 = array();
75 array(0) {
77 array(0) {
H A Dbug52939.phpt5 $ar1 = array("row1" => 2, "row2" => 1);
9 $ar1 = array("row1" => 2, "row2" => 1);
10 $args = array(&$ar1);
14 $ar1 = array("row1" => 2, "row2" => 1);
15 $args = array($ar1);
21 array(2) {
28 array(2) {
35 array(2) {
H A Dbug52940.phpt14 call_user_func_array("foo", array(&$a));
16 call_user_func_array("bar", array(&$a));
H A Dbug53347.phpt6 protected static $color = array( 'gray' => 30 );
H A Dbug53432.phpt2 Bug #53432: Assignment via string index access on an empty string converts to array
66 Error: Cannot use string offset as an array

Completed in 102 milliseconds

12345678910>>...270