Searched refs:ary (Results 1 – 17 of 17) sorted by relevance
/PHP-7.3/Zend/tests/list/ |
H A D | list_reference_009.phpt | 5 $ary = [[0, 1]]; 8 ($ary["foo"] = 1) => &$b 9 ]] = $ary; 11 var_dump($ary, $a, $b); 12 unset($ary, $a, $b); 14 $ary = [[0, 1]]; 17 ($ary["foo"] = 1) => &$b 18 ] = $ary[0]; 19 var_dump($ary, $a, $b);
|
/PHP-7.3/Zend/tests/ |
H A D | bug63734.phpt | 9 public $ary; 12 $this->ary[] = 42; 15 global $ary; 16 $ary[] = $this->ary[0]; 24 var_dump($ary);
|
H A D | array_add_indirect.phpt | 7 $ary = ['y' => 1]; 8 $ary += $GLOBALS; 9 var_dump($ary['x']); 11 var_dump($ary['x']);
|
H A D | bug76846.phpt | 19 $ary = []; 21 $ary[] = new stdClass;
|
/PHP-7.3/ext/opcache/tests/ |
H A D | bug78230.phpt | 11 $ary = [1, 2]; 12 $ary[] = 3; 13 test($ary); 14 $ary[] = 4; 15 var_dump($ary);
|
H A D | assign_obj_op_of_fetch_dim.phpt | 2 Type inference for $ary[$idx]->prop += 7 $ary = []; 8 $ary[0]->y += 2; 9 var_dump(is_object($ary[0]));
|
/PHP-7.3/ext/standard/tests/array/ |
H A D | bug22463.phpt | 6 function a($ary) { 7 return (is_array($ary) ? array_reduce($ary, 'cb', 0) : 1); 14 $ary = array( 26 var_dump(a($ary));
|
/PHP-7.3/ext/soap/interop/ |
H A D | server_round2_groupB.php | 41 function echo2DStringArray($ary) argument 43 return $ary; 46 function echoNestedArray($ary) argument 48 return $ary;
|
/PHP-7.3/ext/soap/tests/interop/Round2/GroupB/ |
H A D | round2_groupB.inc | 23 function echo2DStringArray($ary) 25 return $ary; 28 function echoNestedArray($ary) 30 return $ary;
|
/PHP-7.3/ext/spl/tests/ |
H A D | recursive_tree_iterator_004.phpt | 8 $ary = array( 27 $it = new RecursiveTreeIterator(new RecursiveArrayIterator($ary));
|
H A D | recursive_tree_iterator_007.phpt | 8 $ary = array(new stdClass); 20 $it = new RecursiveArrayIteratorAggregated($ary);
|
H A D | recursive_tree_iterator_008.phpt | 8 $ary = array( 13 $it = new RecursiveArrayIterator($ary);
|
H A D | recursive_tree_iterator_001.phpt | 8 $ary = array( 27 $it = new RecursiveArrayIterator($ary);
|
H A D | recursive_tree_iterator_005.phpt | 8 $ary = array( 28 $it = new RecursiveTreeIterator(new RecursiveArrayIterator($ary), 0);
|
H A D | recursive_tree_iterator_006.phpt | 8 $ary = array( 37 $it = new RecursiveArrayIteratorAggregated($ary);
|
/PHP-7.3/ext/soap/tests/soap12/ |
H A D | soap12-test.inc | 81 function echo2DStringArray($ary) { 82 return $ary; 85 function echoNestedArray($ary) { 86 return $ary;
|
/PHP-7.3/Zend/ |
H A D | bench.php | 112 function ary($n) { function 259 $ary[$i] = gen_random(1); 261 heapsort_r($N, $ary); 262 printf("%.10f\n", $ary[$N]); 399 ary(50000);
|
Completed in 16 milliseconds