Home
last modified time | relevance | path

Searched refs:input (Results 476 – 500 of 690) sorted by relevance

1...<<11121314151617181920>>...28

/PHP-7.4/ext/standard/tests/strings/
H A Dchop_variation4.phpt11 * Testing chop() : with nulls embedded in input string
H A Dsscanf_basic5.phpt7 * Description: Parses input from a string according to a format
H A Dstrtr_variation4.phpt17 /* definitions of required input variables */
H A Dstristr_variation2.phpt26 // array with different values for $input
73 foreach($inputs as $input) {
75 var_dump( stristr("Hello World", $input) );
H A Dstr_replace_variation3.phpt15 echo "\n*** Testing Miscelleneous input data ***\n";
146 *** Testing Miscelleneous input data ***
H A Dstrtr_basic.phpt11 //definitions of required input variables
H A Dsscanf_basic8.phpt7 * Description: Parses input from a string according to a format
H A Dstrtr_variation1.phpt17 /* definitions of required input variables */
H A Dstrtr_variation2.phpt18 /* definitions of required input variables */
/PHP-7.4/ext/standard/tests/array/
H A Darray_chunk_basic1.phpt33 // loop through each element of the array for input
H A Darray_chunk_variation6.phpt20 // input array
H A Darray_key_exists_variation1.phpt91 foreach($inputs as $input) {
93 var_dump( array_key_exists($input, $search) );
/PHP-7.4/ext/mbstring/tests/
H A Dmb_parse_str02.phpt6 arg_separator.input=&#
/PHP-7.4/ext/standard/tests/math/
H A Dcos_basic.phpt2 Test return type and value for expected input cos()
H A Dsin_basic.phpt2 Test return type and value for expected input sin()
/PHP-7.4/ext/standard/tests/file/
H A Ddisk_total_space_error-win32.phpt30 var_dump( disk_total_space( $file_path."/disk_total_space.tmp" )); // file input instead of directo…
H A Dfscanf_variation54.phpt8 Description: Parses input from a file according to a format
H A Ddisk_free_space_error.phpt31 var_dump( disk_free_space( $file_path."/disk_free_space.tmp" )); // file input instead of directory
/PHP-7.4/ext/standard/
H A Dstring.c732 for (end = input+len; input < end; input++) { in php_charmask()
733 c=*input; in php_charmask()
734 if ((input+3 < end) && input[1] == '.' && input[2] == '.' in php_charmask()
735 && input[3] >= c) { in php_charmask()
737 input+=3; in php_charmask()
738 } else if ((input+1 < end) && input[0] == '.' && input[1] == '.') { in php_charmask()
751 if (input[-1] > input[2]) { /* wrong order */ in php_charmask()
3092 RETURN_STR_COPY(input);
5591 zend_string *input; local
5601 Z_PARAM_STR(input)
[all …]
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_watch.c1265 PHPDBG_API int phpdbg_watchpoint_parse_input(char *input, size_t len, HashTable *parent, size_t i, … argument
1266 …return phpdbg_parse_variable_with_arg(input, len, parent, i, (phpdbg_parse_var_with_arg_func) phpd…
1298 static int phpdbg_watchpoint_parse_symtables(char *input, size_t len, int (*callback)(zval *, phpdb… argument
1303 if (scope && len >= 5 && !memcmp("$this", input, 5)) {
1308 info.str = strpprintf(0, "%.*s[]", (int) len, input);
1310 info.str = zend_string_init(input, len, 0);
1314 …if (phpdbg_is_auto_global(input, len) && phpdbg_watchpoint_parse_input(input, len, &EG(symbol_tabl…
1319 …ret = phpdbg_parse_variable_with_arg(input, len, EG(current_execute_data)->symbol_table, 0, (phpdb…
1344 int phpdbg_create_var_watchpoint(char *input, size_t len) { argument
1349 return phpdbg_watchpoint_parse_symtables(input, len, phpdbg_create_simple_watchpoint);
/PHP-7.4/ext/session/tests/
H A Dsession_encode_error2.phpt84 foreach($inputs as $input) {
87 $_SESSION[$input] = "Hello World!";
H A Dsession_set_save_handler_error.phpt85 foreach($inputs as $input) {
87 var_dump(session_set_save_handler($input, NULL, NULL, NULL, NULL, NULL));
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_types_zerofill.phpt63 // we expect a different return value than our input value
69 printf("[%03d + 4] %s - input = %s/%s, output = %s/%s\n", $offset,
/PHP-7.4/ext/tidy/
H A Dtidy.c299 ZEND_ARG_INFO(0, input)
1252 zend_string *input; in PHP_FUNCTION() local
1256 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|zs", &input, &options, &enc, &enc_len) == FAILURE) { in PHP_FUNCTION()
1260 if (ZEND_SIZE_T_UINT_OVFL(ZSTR_LEN(input))) { in PHP_FUNCTION()
1270 if (php_tidy_parse_string(obj, ZSTR_VAL(input), (uint32_t)ZSTR_LEN(input), enc) == FAILURE) { in PHP_FUNCTION()
1711 zend_string *input; in TIDY_DOC_METHOD() local
1715 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|zs", &input, &options, &enc, &enc_len) == FAILURE) { in TIDY_DOC_METHOD()
1719 if (ZEND_SIZE_T_UINT_OVFL(ZSTR_LEN(input))) { in TIDY_DOC_METHOD()
1728 if(php_tidy_parse_string(obj, ZSTR_VAL(input), (uint32_t)ZSTR_LEN(input), enc) == SUCCESS) { in TIDY_DOC_METHOD()
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_stmt_execute_stored_proc_next_result.phpt34 …printf("[006] Cannot bind input parameter, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error…
74 …printf("[016] Cannot bind input parameter, [%d] %s\n", mysqli_stmt_errno($stmt), mysqli_stmt_error…

Completed in 44 milliseconds

1...<<11121314151617181920>>...28