Home
last modified time | relevance | path

Searched refs:arr (Results 226 – 250 of 278) sorted by relevance

12345678910>>...12

/PHP-8.2/Zend/tests/
H A Doffset_string.phpt41 $arr = Array(1,2,3);
43 var_dump($str[$arr]);
H A Dbug34064.phpt2 Bug #34064 (arr[] as param to function in class gives invalid opcode)
/PHP-8.2/ext/phar/tests/tar/
H A Dphar_setsignaturealgo2.phpt7 $arr = Phar::getSupportedSignatures();
8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
/PHP-8.2/ext/standard/tests/array/
H A Darray_merge_variation4.phpt13 $arr = array ('one' => 1, 'two' => 2);
86 var_dump( array_merge($input, $arr) );
87 var_dump( array_merge($arr, $input) );
H A Dshuffle_variation3.phpt49 foreach($array_arg as $arr) {
51 var_dump( shuffle($arr) );
53 var_dump( $arr );
H A Dshuffle_variation4.phpt52 foreach($array_arg as $arr) {
54 var_dump( shuffle($arr) );
56 var_dump( $arr );
H A Dbug34227.phpt60 $arr = explode('a', 'b');
/PHP-8.2/ext/intl/locale/
H A Dlocale_methods.c868 HashTable *arr = Z_ARRVAL_P(ele_value); in append_multiple_key_values() local
871 ZEND_HASH_FOREACH_VAL(arr, data) { in append_multiple_key_values()
949 zval* arr = NULL; in PHP_FUNCTION() local
956 &arr) == FAILURE) in PHP_FUNCTION()
961 hash_arr = Z_ARRVAL_P( arr ); in PHP_FUNCTION()
1407 static void array_cleanup( char* arr[] , int arr_size) in array_cleanup() argument
1411 if( arr[i*2] ){ in array_cleanup()
1412 efree( arr[i*2]); in array_cleanup()
1415 efree(arr); in array_cleanup()
1538 zval* arr = NULL; in PHP_FUNCTION() local
[all …]
/PHP-8.2/ext/standard/tests/file/
H A Dpopen_pclose_basic-win32-mb.phpt20 $arr = array("ggg", "ddd", "aaa", "sss");
37 foreach($arr as $str) {
H A Dpopen_pclose_basic-win32.phpt20 $arr = array("ggg", "ddd", "aaa", "sss");
37 foreach($arr as $str) {
H A Dpopen_pclose_basic.phpt36 $arr = array("ggg", "ddd", "aaa", "sss");
40 foreach($arr as $str) {
H A Dstat_error-win32.phpt12 $arr = array(__FILE__);
/PHP-8.2/ext/oci8/tests/
H A Dlob_null.phpt159 while ($arr = oci_fetch_assoc($s)) {
160 if (is_object($arr['DATA'])) {
161 echo $arr['ID'] . " is an object: ";
162 $r = $arr['DATA']->load();
166 echo $arr['ID'] . " is not an object\n";
/PHP-8.2/ext/intl/tests/
H A Dut_common.inc54 function ut_coll_sort( $coll, &$arr, $sort_flag = Collator::SORT_REGULAR )
56 …return $GLOBALS['oo-mode'] ? $coll->sort( $arr, $sort_flag ) : collator_sort( $coll, $arr, $sort_f…
58 function ut_coll_sort_with_sort_keys( $coll, &$arr )
60 …urn $GLOBALS['oo-mode'] ? $coll->sortWithSortKeys( $arr ) : collator_sort_with_sort_keys( $coll, $
66 function ut_coll_asort( $coll, &$arr, $sort_flag = Collator::SORT_REGULAR )
68 …return $GLOBALS['oo-mode'] ? $coll->asort( $arr, $sort_flag ) : collator_asort( $coll, $arr, $sort…
H A Dlocale_parse_locale2.phpt74 $arr = ut_loc_locale_parse( $locale);
77 if( $arr){
78 foreach( $arr as $key => $value){
/PHP-8.2/ext/openssl/tests/
H A Dopenssl_encrypt_error.phpt13 $arr = array(1);
/PHP-8.2/ext/phar/tests/zip/
H A Dphar_setsignaturealgo2.phpt7 $arr = Phar::getSupportedSignatures();
8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_helpers.c1426 ZVAL_ARR(object_ptr, arr); in zend_jit_fetch_dim_obj_helper()
1427 GC_ADDREF(arr); in zend_jit_fetch_dim_obj_helper()
1430 zend_array_destroy(arr); in zend_jit_fetch_dim_obj_helper()
1531 GC_ADDREF(arr); in zend_jit_assign_dim_helper()
1534 zend_array_destroy(arr); in zend_jit_assign_dim_helper()
1615 ZVAL_ARR(container, arr); in zend_jit_assign_dim_op_helper()
1616 GC_ADDREF(arr); in zend_jit_assign_dim_op_helper()
1619 zend_array_destroy(arr); in zend_jit_assign_dim_op_helper()
2467 Z_TRY_DELREF_P(arr); in zend_jit_zval_array_dup()
2468 ht = Z_ARRVAL_P(arr); in zend_jit_zval_array_dup()
[all …]
/PHP-8.2/ext/standard/
H A Darray.c888 zend_array *arr; in php_usort() local
898 arr = Z_ARR_P(array); in php_usort()
905 arr = zend_array_dup(arr); in php_usort()
911 ZVAL_ARR(array, arr); in php_usort()
1665 if (HT_IS_PACKED(arr)) {
1711 if (HT_IS_PACKED(arr)) {
1755 if (HT_IS_PACKED(arr)) {
1805 if (HT_IS_PACKED(arr)) {
1850 if (HT_IS_PACKED(arr)) {
1909 if (HT_IS_PACKED(arr)) {
[all …]
/PHP-8.2/ext/standard/tests/general_functions/
H A Disset_basic2.phpt26 $arr = array();
/PHP-8.2/ext/json/tests/
H A Dpass001.phpt72 $arr = json_decode($test, true);
73 var_dump($arr);
79 $arr_enc = json_encode($arr, JSON_PARTIAL_OUTPUT_ON_ERROR);
86 $arr = json_decode($arr_enc, true);
87 var_dump($arr);
H A Dpass001.1.phpt82 $arr = json_decode($test, true);
83 var_dump($arr);
89 $arr_enc = json_encode($arr, JSON_PARTIAL_OUTPUT_ON_ERROR);
96 $arr = json_decode($arr_enc, true);
97 var_dump($arr);
H A Dpass001.1_64bit.phpt86 $arr = json_decode($test, true);
87 var_dump($arr);
93 $arr_enc = json_encode($arr, JSON_PARTIAL_OUTPUT_ON_ERROR);
100 $arr = json_decode($arr_enc, true);
101 var_dump($arr);
/PHP-8.2/docs/
H A Dparameter-parsing-api.md163 zval *arr;
165 &obj, &arr) == FAILURE) {
170 zval *arr;
172 &arr) == FAILURE) {
/PHP-8.2/ext/phar/tests/
H A Dphpinfo_004.phpt9 $arr = Phar::getSupportedSignatures();
10 if (in_array("OpenSSL", $arr)) die("skip openssl support enabled");

Completed in 52 milliseconds

12345678910>>...12