/PHP-7.2/ext/mysqli/tests/ |
H A D | mysqli_fetch_lengths_oo.phpt | 2 mysqli_result->lengths 21 var_dump($res->lengths); 23 var_dump($res->lengths); 24 var_dump($res->lengths); 27 var_dump($res->lengths);
|
H A D | mysqli_class_mysqli_result_interface.phpt | 92 assert(($tmp = mysqli_fetch_lengths($res)) === $mysqli_result->lengths); 93 printf("mysqli_result->lengths -> '%s'/%s ('%s'/%s)\n", 94 ((is_array($mysqli_result->lengths)) ? implode(' ', $mysqli_result->lengths) : 'n/a'), 95 gettype($mysqli_result->lengths), 167 lengths 174 lengths 181 mysqli_result->lengths -> '1 1'/array ('1 1'/array)
|
H A D | mysqli_multi_query.phpt | 118 if (!($lengths = mysqli_fetch_lengths($res))) 121 if (count($lengths) != 2) 122 printf("[016 - %d] Expecting 2 column lengths got %d [%d] %s\n", $res_num, count($lengths)); 124 foreach ($lengths as $k => $length) 126 printf("[017 - %d] Strange column lengths for column %d, got %d expecting any > 0\n",
|
H A D | mysqli_result_references.phpt | 137 ["lengths"]=>
|
H A D | mysqli_class_mysqli_result_reflection.phpt | 348 Inspecting property 'lengths' 373 Default property 'lengths'
|
/PHP-7.2/ext/standard/tests/file/ |
H A D | bug26938.phpt | 10 . '$lengths = array(10,20000,10000,5,10000,3);' 11 . 'foreach($lengths as $length) {' 17 . '$lengths = array(10,20000,10000,5,10000,3);' 18 . 'foreach($lengths as $length) {'
|
H A D | bug12556.phpt | 2 Bug #12556 (fgetcsv() ignores lengths when quotes not closed)
|
/PHP-7.2/ext/standard/tests/strings/ |
H A D | strncasecmp_variation3.phpt | 2 Test strncasecmp() function: usage variations - various lengths 10 /* Test strncasecmp() with various lengths */ 12 echo "*** Test strncasecmp() function: with different lengths ***\n"; 24 *** Test strncasecmp() function: with different lengths ***
|
H A D | strncmp_variation3.phpt | 2 Test strncmp() function: usage variations - different lengths 10 /* Test strncmp() with various lengths */ 12 echo "*** Test strncmp() function: with different lengths ***\n"; 24 \*\*\* Test strncmp\(\) function: with different lengths \*\*\*
|
H A D | strncmp_variation5.phpt | 2 Test strncmp() function : usage variations - different lengths(all types) 36 $lengths = array ( 91 for($index = 0; $index < count($lengths); $index ++) { 92 $len = $lengths[$index];
|
H A D | strncasecmp_variation5.phpt | 36 $lengths = array ( 87 for($index = 0; $index < count($lengths); $index ++) { 88 $len = $lengths[$index];
|
H A D | strtr_basic.phpt | 29 //$from and $to are of different lengths, extra chars in the longer one are ignored
|
/PHP-7.2/ext/zlib/tests/ |
H A D | inflate_get_read_len.phpt | 23 echo ($compressed_len == $detected_compressed_len) ? 'The lengths are equal.' : 'The lengths are un… 29 The lengths are equal.
|
H A D | gzread_basic.phpt | 16 $lengths = array(10, 14, 7, 99, 2000); 18 foreach ($lengths as $length) {
|
H A D | gzgets_basic.phpt | 17 $lengths = array(10, 14, 7, 99); 18 foreach ($lengths as $length) {
|
H A D | gzwrite_error2.phpt | 2 Test function gzwrite() by calling it invalid lengths
|
H A D | gzread_error2.phpt | 2 Test function gzread() by calling it invalid lengths
|
H A D | bug60761.phpt | 44 var_dump($lens); // show lengths to help triage in case of failure
|
/PHP-7.2/sapi/phpdbg/ |
H A D | phpdbg_cmd.c | 277 size_t lengths[2] = { in phpdbg_match_param() local 280 if (lengths[0] == lengths[1]) { in phpdbg_match_param() 283 l->file.name, r->file.name, lengths[0]) == SUCCESS); in phpdbg_match_param() 296 size_t lengths[2] = { in phpdbg_match_param() local 298 if (lengths[0] == lengths[1]) { in phpdbg_match_param() 299 if (memcmp(l->method.class, r->method.class, lengths[0]) == SUCCESS) { in phpdbg_match_param() 300 lengths[0] = strlen(l->method.name); in phpdbg_match_param() 301 lengths[1] = strlen(r->method.name); in phpdbg_match_param() 303 if (lengths[0] == lengths[1]) { in phpdbg_match_param() 305 l->method.name, r->method.name, lengths[0]) == SUCCESS); in phpdbg_match_param()
|
H A D | phpdbg_bp.c | 1059 size_t lengths[2] = {strlen(param->file.name), strlen(str)}; in phpdbg_find_breakpoint_param() local 1061 if (lengths[0] == lengths[1]) { in phpdbg_find_breakpoint_param() 1063 param->file.name, str, lengths[0]) == SUCCESS); in phpdbg_find_breakpoint_param() 1078 size_t lengths[2] = { strlen(param->method.class), ZSTR_LEN(ops->scope->name) }; in phpdbg_find_breakpoint_param() local 1079 …if (lengths[0] == lengths[1] && memcmp(param->method.class, ops->scope->name, lengths[0]) == SUCCE… in phpdbg_find_breakpoint_param() 1080 lengths[0] = strlen(param->method.name); in phpdbg_find_breakpoint_param() 1081 lengths[1] = ZSTR_LEN(ops->function_name); in phpdbg_find_breakpoint_param() 1083 …if (lengths[0] == lengths[1] && memcmp(param->method.name, ops->function_name, lengths[0]) == SUCC… in phpdbg_find_breakpoint_param()
|
/PHP-7.2/ext/mysqlnd/ |
H A D | mysqlnd_result.c | 186 if (result->lengths) { in MYSQLND_METHOD() 188 result->lengths = NULL; in MYSQLND_METHOD() 276 if (set->lengths) { in MYSQLND_METHOD() 278 set->lengths = NULL; in MYSQLND_METHOD() 745 size_t * lengths = result->unbuf->lengths; in MYSQLND_METHOD() local 760 if (lengths) { in MYSQLND_METHOD() 761 lengths[i] = len; in MYSQLND_METHOD() 865 size_t * lengths = result->unbuf->lengths; in MYSQLND_METHOD() local 891 if (lengths) { in MYSQLND_METHOD() 892 lengths[i] = len; in MYSQLND_METHOD() [all …]
|
/PHP-7.2/ext/standard/tests/array/ |
H A D | bug28974.phpt | 2 Bug #28974 (array_(p)slice() treats large lengths incorrectly - overflow)
|
H A D | array_splice_variation3.phpt | 2 Test array_splice() function : usage variations - lengths and offsets 10 echo "*** array_splice() function : usage variations - lengths and offsets\n"; 75 *** array_splice() function : usage variations - lengths and offsets
|
/PHP-7.2/ext/gmp/tests/ |
H A D | gmp_import.phpt | 57 // Invalid data lengths
|
/PHP-7.2/ext/pcre/pcrelib/testdata/ |
H A D | testinput11 | 1 /-- These are a few representative patterns whose lengths and offsets are to be
|