/PHP-8.1/ext/phar/tests/ |
H A D | phpinfo_003.phpt | 9 $arr = Phar::getSupportedSignatures(); 10 if (in_array("OpenSSL", $arr)) die("skip openssl support enabled");
|
H A D | phar_setsignaturealgo2.phpt | 7 $arr = Phar::getSupportedSignatures(); 8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
|
H A D | phpinfo_001.phpt | 9 $arr = Phar::getSupportedSignatures(); 10 if (in_array("OpenSSL", $arr)) die("skip openssl support enabled");
|
/PHP-8.1/ext/sockets/ |
H A D | conversions.h | 60 size_t calculate_scm_rights_space(const zval *arr, ser_context *ctx); 61 void from_zval_write_fd_array(const zval *arr, char *int_arr, ser_context *ctx);
|
H A D | conversions.c | 208 static unsigned from_array_iterate(const zval *arr, in from_array_iterate() argument 220 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(arr), elem) { in from_array_iterate() 839 static void from_zval_write_control(const zval *arr, in from_zval_write_control() argument 931 if (Z_TYPE_P(arr) != IS_ARRAY) { in from_zval_write_control_array() 936 num_elems = zend_hash_num_elements(Z_ARRVAL_P(arr)); in from_zval_write_control_array() 947 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(arr), elem) { in from_zval_write_control_array() 1098 if (Z_TYPE_P(arr) != IS_ARRAY) { in from_zval_write_iov_array() 1103 num_elem = zend_hash_num_elements(Z_ARRVAL_P(arr)); in from_zval_write_iov_array() 1345 if (Z_TYPE_P(arr) != IS_ARRAY) { in calculate_scm_rights_space() 1350 num_elems = zend_hash_num_elements(Z_ARRVAL_P(arr)); in calculate_scm_rights_space() [all …]
|
/PHP-8.1/Zend/tests/ |
H A D | 032.phpt | 7 test($arr[]);
|
H A D | 031.phpt | 7 test($arr[]);
|
H A D | bug39990.phpt | 12 foreach($obj->arr as $value)
|
H A D | bug78151.phpt | 20 $arr = new Arr(['foo' => 'bar']);
|
H A D | falsetoarray.phpt | 74 $arr = false; 75 [$arr[]] = [42]; 78 $arr = [ 0 => [ 0 => false ] ]; 79 $arr[0][0][0][] = 42;
|
H A D | bug71930.phpt | 2 Bug #71930 (_zval_dtor_func: Assertion `(arr)->gc.refcount <= 1' failed)
|
H A D | offset_bool.phpt | 22 $arr = Array(1,2,3); 23 var_dump($bool[$arr]);
|
H A D | offset_long.phpt | 22 $arr = Array(1,2,3); 23 var_dump($long[$arr]);
|
H A D | offset_null.phpt | 22 $arr = Array(1,2,3); 23 var_dump($null[$arr]);
|
/PHP-8.1/ext/soap/ |
H A D | php_packet_soap.c | 345 zval *arr; in parse_packet_soap() local 349 …if ((arr = zend_hash_str_find(Z_ARRVAL_P(return_value), (char*)val->name, strlen((char*)val->name)… in parse_packet_soap() 350 add_next_index_zval(arr, &tmp); in parse_packet_soap() 352 zval arr; in parse_packet_soap() local 354 array_init(&arr); in parse_packet_soap() 355 add_next_index_zval(&arr, &tmp); in parse_packet_soap() 356 add_assoc_zval(return_value, (char*)val->name, &arr); in parse_packet_soap()
|
/PHP-8.1/ext/standard/tests/array/ |
H A D | array_rand_variation3.phpt | 46 foreach($input as $arr) { 48 var_dump( array_rand($arr) ); // with default arguments 49 var_dump( array_rand($arr, 3) ); // with default as well as optional arguments
|
H A D | bug40191.phpt | 12 $arr = array_unique($arrObj);
|
H A D | array_merge_variation3.phpt | 13 $arr = array (1, 2); 110 var_dump( array_merge($input, $arr) ); 111 var_dump( array_merge($arr, $input) );
|
/PHP-8.1/ext/standard/tests/serialize/ |
H A D | unserializeS.phpt | 8 $arr = array(str_repeat('"', 200)."1"=>1,str_repeat('"', 200)."2"=>1);
|
/PHP-8.1/tests/lang/ |
H A D | foreach_with_object_001.phpt | 2 foreach() with foreach($o->mthd()->arr)
|
/PHP-8.1/ext/spl/tests/ |
H A D | fixedarray_013.phpt | 9 function test(SplFixedArray &$arr) {
|
/PHP-8.1/ext/opcache/tests/ |
H A D | optimize_func_calls_001.phpt | 9 test($arr[]);
|
/PHP-8.1/ext/opcache/tests/opt/ |
H A D | fe_fetch_001.phpt | 13 $obj = (object)$arr;
|
/PHP-8.1/ext/standard/tests/strings/ |
H A D | stripslashes_variation4.phpt | 28 foreach( $str_array as $arr ) { 30 var_dump( stripslashes_deep($arr) );
|
H A D | implode1.phpt | 90 $arr = array(); 91 $arr[0] = &$obj; 92 $arr[1] = &$obj; 93 var_dump( implode(",", $arr) ); 94 var_dump($arr);
|