Home
last modified time | relevance | path

Searched refs:arr (Results 101 – 125 of 278) sorted by relevance

12345678910>>...12

/PHP-8.2/ext/oci8/tests/
H A Dbug42496_2.phpt35 $arr = array();
36 while ($arr = oci_fetch_assoc($s)) {
37 $arr['C1']->free();
38 $arr['C2']->free();
H A Dbug42496_1.phpt37 $arr = array();
38 while ($arr = oci_fetch_assoc($s)) {
39 $arr['C1']->free();
40 $arr['C2']->free();
/PHP-8.2/ext/standard/tests/strings/
H A Dstrtr_with_reference.phpt7 $arr = ['bar' => &$foo];
8 var_dump(strtr('foobar', $arr));
H A Dsubstr_replace_array.phpt6 $arr = array('abc' => 'llsskdkk','def' => 'llsskjkkdd', 4 => 'hello', 42 => 'world');
7 $newarr = substr_replace($arr, 'zzz', 0, -2);
/PHP-8.2/ext/dom/tests/
H A Dbug47430.phpt21 $arr = array();
22 $arr[0] = 'Value';
24 print_r($arr);
/PHP-8.2/Zend/tests/
H A Dlist_004.phpt6 $arr = array(2, 1);
7 $b =& $arr;
H A Dbug71539.phpt2 Bug #71539 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes)
H A Dbug71539_3.phpt2 Bug #71539.3 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes)
H A Dbug71539_4.phpt2 Bug #71539.4 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes)
H A Dbug71539_5.phpt2 Bug #71539.5 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes)
H A Dindirect_method_call_005.phpt7 public function __construct($arr) {
8 parent::__construct($arr);
/PHP-8.2/ext/spl/tests/
H A Dbug76367.phpt5 $arr = [1,3,55,66,43,6];
7 $iter = new NoRewindIterator(new ArrayIterator($arr));
H A Dbug68175.phpt5 $arr = new ArrayIterator(array());
6 $regex = new RegexIterator($arr, '/^test/');
/PHP-8.2/ext/json/tests/
H A Dpass002.phpt12 $arr = json_decode($test, true);
13 var_dump($arr);
19 $arr_enc = json_encode($arr);
26 $arr = json_decode($arr_enc, true);
27 var_dump($arr);
/PHP-8.2/ext/opcache/tests/opt/
H A Dinference_009.phpt11 $arr[y][]=y;
12 $arr=[''=>y];
H A Dinference_004.phpt11 $arr[]->y = c;
12 $arr = c;
/PHP-8.2/Zend/tests/generators/
H A Dreturn_from_by_ref_generator.phpt8 $arr = [42];
9 return $arr[0];
/PHP-8.2/ext/phar/tests/
H A Dopendir_edgecases.phpt26 $arr = array();
28 $arr[] = $b;
30 sort($arr);
31 foreach ($arr as $b) {
/PHP-8.2/ext/standard/tests/array/
H A Dbug14580.phpt5 $arr = array ("foo\0bar" => "foo\0bar");
6 $key = key($arr);
/PHP-8.2/tests/lang/
H A Dbug55754.phpt6 current($arr = array(0 => "a"));
8 current($arr);
/PHP-8.2/ext/session/tests/
H A D003.phpt25 session_decode('baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:1;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"b…
28 $_SESSION["arr"][3]->method();
31 var_dump($_SESSION["arr"]);
/PHP-8.2/sapi/apache2handler/
H A Dphp_apache.h59 #define APR_ARRAY_FOREACH_OPEN(arr, key, val) \ argument
63 elts = (apr_table_entry_t *) arr->elts; \
64 for (i = 0; i < arr->nelts; i++) { \
/PHP-8.2/ext/standard/tests/serialize/
H A Dcounting_of_references.phpt9 $arr = [&$ref1, &$ref1, &$ref2, &$ref2];
10 var_dump(serialize($arr));
/PHP-8.2/ext/standard/tests/general_functions/
H A Dget_defined_vars_basic.phpt20 $arr = array(1,2,3,4);
38 $arr = array("foo", "bar");
81 ["arr"]=>
109 ["arr"]=>
131 ["arr"]=>
/PHP-8.2/ext/opcache/tests/
H A Dsccp_loop_var_free.phpt6 $arr = [];
7 foreach ($arr as $item) {

Completed in 21 milliseconds

12345678910>>...12