Home
last modified time | relevance | path

Searched refs:arr (Results 176 – 200 of 280) sorted by relevance

12345678910>>...12

/PHP-8.1/ext/standard/tests/array/
H A Dbug35821.phpt19 $arr = array(new Element(), new Element(), new Element());
20 array_map(array('Element', 'CallBack'), $arr);
/PHP-8.1/ext/openssl/tests/
H A Dbug47828.phpt34 $arr = openssl_x509_parse($cert);
35 var_dump($arr['hash']);
/PHP-8.1/Zend/tests/
H A Dbug44899.phpt21 $arr = array('foo' => '');
23 $myclass = new myclass($arr) ;
H A Dbug70262.phpt14 $obj->arr = $array; // make the refcount == 3;
21 …->arr // FETCH_OBJ_W will EXTRACT_ZVAL_PTR because getObj() result a refcount == 1 object (READY_T…
H A Dbug44899_2.phpt26 $arr = array('foo' => '');
28 $myclass = new myclass($arr) ;
H A Dlist_005.phpt30 $arr = array(1, 2, 3);
32 list($a, $b, $c) = $arr;
/PHP-8.1/ext/spl/tests/
H A Dbug69970.phpt21 $arr = array("a", array("ba", array("bba", "bbb")));
22 $obj = new RecursiveArrayIterator($arr);
H A DrecursiveIteratorIterator_beginchildren_error.phpt6 $arr = array(array(1,2),2);
7 $arrOb = new ArrayObject($arr);
H A DrecursiveIteratorIterator_callHasChildren_error.phpt6 $arr = array(1,2);
7 $arrOb = new ArrayObject($arr);
H A DrecursiveIteratorIterator_nextelement_error.phpt6 $arr = array(1,2);
7 $arrOb = new ArrayObject($arr);
H A DrecursiveIteratorIterator_endchildren_error.phpt6 $arr = array(array(1,2));
7 $arrOb = new ArrayObject($arr);
H A Drecursive_tree_iterator_setpostfix.phpt8 $arr = array(
27 $it = new RecursiveArrayIterator($arr);
H A Diterator_015.phpt32 $arr = array("a", array("ba", array("bba", "bbb"), array(array("bcaa"))), array("ca"), "d");
33 $obj = new RecursiveArrayIterator($arr);
H A Diterator_016.phpt45 $arr = array("a", array("ba", array("bba", "bbb"), array(array("bcaa"))), array("ca"), "d");
46 $obj = new Menu($arr);
/PHP-8.1/ext/snmp/tests/
H A Dbug72479.phpt11 $arr = [1, [1, 2, 3, 4, 5], 3, 4, 5];
12 $poc = 'a:3:{i:1;N;i:2;O:4:"snmp":1:{s:11:"quick_print";'.serialize($arr).'}i:1;R:7;}';
/PHP-8.1/ext/gd/tests/
H A Dlibgd00186.phpt23 $arr = imagecolorsforindex($im, $index);
24 if ($arr['blue'] == 2) {
/PHP-8.1/ext/standard/tests/strings/
H A Dhtml_entity_decode1.phpt5 $arr = array(
32 foreach ($arr as $ent) {
/PHP-8.1/ext/standard/tests/general_functions/
H A Dvar_export_basic5.phpt29 foreach($valid_arrays as $key => $arr) {
31 var_export( $arr );
33 var_export( $arr, FALSE);
35 var_dump( var_export( $arr, TRUE) );
/PHP-8.1/Zend/tests/array_unpack/
H A Dalready_occupied.phpt8 $arr = [1, 2, 3];
10 var_dump([PHP_INT_MAX-1 => 0, ...$arr]);
/PHP-8.1/ext/pdo_pgsql/tests/
H A Dbug69344.phpt21 $arr = [
29 $stmt->execute($arr);
/PHP-8.1/build/
H A Dorder_by_dep.awk58 function count(arr, n, i)
61 for (i in arr)
/PHP-8.1/ext/phar/tests/
H A Dphpinfo_002.phpt9 $arr = Phar::getSupportedSignatures();
10 if (in_array("OpenSSL", $arr)) die("skip openssl support enabled");
H A Dtest_signaturealgos.phpt7 $arr = Phar::getSupportedSignatures();
8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
/PHP-8.1/ext/intl/collator/
H A Dcollator_functions_arginfo.h35 ZEND_ARG_TYPE_INFO(1, arr, IS_ARRAY, 0)
41 ZEND_ARG_TYPE_INFO(1, arr, IS_ARRAY, 0)
/PHP-8.1/ext/oci8/tests/
H A Doci_execute_segfault.phpt38 while ($arr = oci_fetch_assoc($s)) {
39 $result = $arr['BLOB']->load();

Completed in 28 milliseconds

12345678910>>...12