/PHP-7.3/ext/intl/tests/ |
H A D | bug74230.phpt | 10 $pair = $high.$low; 14 @\iconv('UTF-8', 'UTF-8', $pair) === false
|
/PHP-7.3/ext/json/ |
H A D | json_parser.y | 59 } pair; member 75 %type <pair> pair 78 %destructor { zend_string_release_ex($$.key, 0); zval_ptr_dtor_nogc(&$$.val); } <pair> 137 pair 144 | member ',' pair 157 pair:
|
H A D | json_parser.tab.h | 81 } pair; member
|
H A D | json_parser.tab.c | 190 } pair; member 1143 …{ zend_string_release_ex(((*yyvaluep).pair).key, 0); zval_ptr_dtor_nogc(&((*yyvaluep).pair).val); } in yydestruct() 1507 …if (parser->methods.object_update(parser, &(yyval.value), (yyvsp[0].pair).key, &(yyvsp[0].pair).va… in yyparse() 1517 …r->methods.object_update(parser, &(yyvsp[-2].value), (yyvsp[0].pair).key, &(yyvsp[0].pair).val) ==… in yyparse() 1536 (yyval.pair).key = Z_STR((yyvsp[-2].value)); in yyparse() 1537 ZVAL_COPY_VALUE(&(yyval.pair).val, &(yyvsp[0].value)); in yyparse() 1545 PHP_JSON_USE_2((yyval.pair), (yyvsp[-1].value), (yyvsp[0].value)); in yyparse()
|
/PHP-7.3/ext/sockets/tests/ |
H A D | socket_create_pair-wrongparams.phpt | 30 Warning: socket_create_pair(): unable to create socket pair [%d]: %s not supported in %s on line %d 35 Warning: socket_create_pair(): unable to create socket pair [%d]: %s not supported in %s on line %d 40 Warning: socket_create_pair(): unable to create socket pair [%d]: %s not supported %s on line %d
|
/PHP-7.3/ext/standard/tests/array/ |
H A D | array_walk_basic2.phpt | 17 * Parameters : item - value in key/value pair 18 * key - key in key/value pair 33 * Parameters : item - value in key/value pair 34 * key - key in key/value pair
|
H A D | array_walk_recursive_basic2.phpt | 17 * Parameters : item - value in key/value pair 18 * key - key in key/value pair 33 * Parameters : item - value in key/value pair 34 * key - key in key/value pair
|
H A D | array_change_key_case_variation.phpt | 13 /* should return one value key pair with key being in lowercase */ 17 /* should return one value key pair with key being in uppercase */
|
H A D | array_walk_error1.phpt | 13 * Parameters : value - value in key/value pair 14 * key - key in key/value pair
|
H A D | array_walk_recursive_error1.phpt | 13 * Parameters : value - value in key/value pair 14 * key - key in key/value pair
|
H A D | array_walk_basic1.phpt | 16 * Parameters : item - item in key/item pair 17 * key - key in key/item pair
|
H A D | array_walk_recursive_basic1.phpt | 16 * Parameters : item - item in key/item pair 17 * key - key in key/item pair
|
H A D | array_diff_variation6.phpt | 21 $array_assoc = array ('2' => 'c', //same key=>value pair, different order
|
H A D | each_variation6.phpt | 6 * Description: Return the currently pointed key..value pair in the passed array,
|
H A D | array_diff_assoc_variation8.phpt | 22 $array_assoc = array ('2' => 'c', //same key=>value pair, different order
|
H A D | each_basic.phpt | 6 * Description: Return the currently pointed key..value pair in the passed array,
|
H A D | each_error.phpt | 6 * Description: Return the currently pointed key..value pair in the passed array,
|
H A D | array_walk_variation6.phpt | 19 * Parameters : $value - value from key/value pair of the array 20 * $key - key from key/value pair of the array
|
H A D | each_variation4.phpt | 6 * Description: Return the currently pointed key..value pair in the passed array,
|
H A D | each_variation5.phpt | 6 * Description: Return the currently pointed key..value pair in the passed array,
|
H A D | array_walk_recursive_variation6.phpt | 19 * Parameters : $value - value from key/value pair of the array 20 * $key - key from key/value pair of the array
|
/PHP-7.3/ext/iconv/tests/ |
H A D | iconv_mime_decode_headers.phpt | 11 Received: from pb1.pair.com (pb1.pair.com [16.92.131.4]) by ***.example.com 45 …string(259) "from pb1.pair.com (pb1.pair.com [16.92.131.4]) by ***.example.com (8.12.10/8.12.10/19…
|
/PHP-7.3/ext/mbstring/tests/ |
H A D | zend_multibyte-05.phpt | 12 // back to UTF-8. There should be only a pair of consecutive bytes that is
|
H A D | zend_multibyte-09.phpt | 14 // back to UTF-8. There should be only a pair of consecutive bytes that is
|
/PHP-7.3/ext/pcntl/ |
H A D | pcntl.c | 916 char **current_arg, **pair; in PHP_FUNCTION() local 954 pair = envp = safe_emalloc((envc + 1), sizeof(char *), 0); in PHP_FUNCTION() 967 *pair = emalloc(pair_length); in PHP_FUNCTION() 968 strlcpy(*pair, ZSTR_VAL(key), ZSTR_LEN(key) + 1); in PHP_FUNCTION() 969 strlcat(*pair, "=", pair_length); in PHP_FUNCTION() 970 strlcat(*pair, Z_STRVAL_P(element), pair_length); in PHP_FUNCTION() 975 pair++; in PHP_FUNCTION() 977 *(pair) = NULL; in PHP_FUNCTION() 985 for (pair = envp; *pair != NULL; pair++) efree(*pair); in PHP_FUNCTION()
|