/PHP-8.0/ext/standard/ |
H A D | levenshtein.c | 22 static zend_long reference_levdist(const zend_string *string1, const zend_string *string2, zend_lon… in reference_levdist() argument 28 if (ZSTR_LEN(string1) == 0) { in reference_levdist() 32 return ZSTR_LEN(string1) * cost_del; in reference_levdist() 41 for (i1 = 0; i1 < ZSTR_LEN(string1) ; i1++) { in reference_levdist() 45 c0 = p1[i2] + ((ZSTR_VAL(string1)[i1] == ZSTR_VAL(string2)[i2]) ? 0 : cost_rep); in reference_levdist() 72 zend_string *string1, *string2; in PHP_FUNCTION() local 77 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "SS|lll", &string1, &string2, &cost_ins, &cost_rep, &co… in PHP_FUNCTION() 82 RETURN_LONG(reference_levdist(string1, string2, cost_ins, cost_rep, cost_del)); in PHP_FUNCTION()
|
H A D | basic_functions.stub.php | 549 function strcoll(string $string1, string $string2): int {} argument 627 function similar_text(string $string1, string $string2, &$percent = null): int {} argument 664 function strnatcmp(string $string1, string $string2): int {} argument 668 function strnatcasecmp(string $string1, string $string2): int {} argument 1011 function levenshtein(string $string1, string $string2, int $insertion_cost = 1, int $replacement_co… argument
|
H A D | basic_functions_arginfo.h | 826 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0) 968 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0) 1554 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/PHP-8.0/Zend/ |
H A D | zend_builtin_functions.stub.php | 15 function strcmp(string $string1, string $string2): int {} argument 17 function strncmp(string $string1, string $string2, int $length): int {} argument 19 function strcasecmp(string $string1, string $string2): int {} argument 21 function strncasecmp(string $string1, string $string2, int $length): int {} argument
|
H A D | zend_builtin_functions_arginfo.h | 22 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0) 27 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | addcslashes_002.phpt | 15 class string1 21 $obj = new string1;
|
H A D | trim1.phpt | 23 class string1 29 $obj = new string1;
|
H A D | rtrim.phpt | 22 class string1 { 27 $obj = new string1;
|
H A D | explode1.phpt | 82 class string1 { 87 $obj = new string1;
|
H A D | strcasecmp.phpt | 41 class string1 { 46 $obj_string1 = new string1;
|
H A D | strcmp.phpt | 41 class string1 { 46 $obj_string1 = new string1;
|
/PHP-8.0/ext/pdo_oci/tests/ |
H A D | bug60994.phpt | 30 $string1 = 'abc' . str_repeat('j', 8187) . 'xyz'; // 8193 chars total works fine here (even 1 milli… 32 $insert->bindParam(':data', $string1, \PDO::PARAM_STR, strlen($string1)); // length in bytes 40 echo 'size of string1 is ', strlen($string1), ' bytes, ', mb_strlen($string1), ' chars.', PHP_EOL; 100 size of string1 is 1000006 bytes, 1000006 chars.
|
/PHP-8.0/ext/pcre/tests/ |
H A D | preg_quote_basic.phpt | 12 $string1 = 'testing - /this *-has \ metacharacters^ in $ should work'; 13 …tch('/^[tT]\w{6} - ' . preg_quote($string_before, '/') . ' [a-z]*\s*work$/', $string1, $matches1));
|
/PHP-8.0/ext/oci8/tests/ |
H A D | bug70700.phpt | 36 $string1 = 'abc' . str_repeat('j', 1000000) . 'xyz'; 40 $desc->writeTemporary($string1, OCI_TEMP_CLOB); 42 $desc->save($string1); 60 echo 'size of string1 is ', strlen($string1), ' bytes, ', mb_strlen($string1), ' chars.', PHP_EOL; 160 size of string1 is 1000006 bytes, 1000006 chars.
|
/PHP-8.0/ext/intl/spoofchecker/ |
H A D | spoofchecker.stub.php | 19 public function areConfusable(string $string1, string $string2, &$errorCode = null) {} argument
|
H A D | spoofchecker_arginfo.h | 13 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/PHP-8.0/ext/intl/collator/ |
H A D | collator.stub.php | 19 public function compare(string $string1, string $string2) {} argument
|
H A D | collator_arginfo.h | 11 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/PHP-8.0/ext/standard/tests/array/ |
H A D | array_flip_variation3.phpt | 36 'string_value1' => 'string1', 84 ["string1"]=>
|
/PHP-8.0/Zend/tests/ |
H A D | get_defined_vars.phpt | 10 $assoc_array = array( 'a'=>97, 'c'=>99, 'A'=>65, 'C'=>67, 1=>"string1" ); //associative array 92 string(7) "string1"
|
/PHP-8.0/ext/sodium/ |
H A D | libsodium.stub.php | 163 function sodium_add(string &$string1, string $string2): void {} argument 165 function sodium_compare(string $string1, string $string2): int {} argument 169 function sodium_memcmp(string $string1, string $string2): int {} argument
|
H A D | libsodium_arginfo.h | 352 ZEND_ARG_TYPE_INFO(1, string1, IS_STRING, 0) 357 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/PHP-8.0/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 480 int string1_len, const void *string1, in php_sqlite3_collation_callback() argument 494 ZVAL_STRINGL(&zargs[0], (char *) string1, string1_len); in php_sqlite3_collation_callback()
|
/PHP-8.0/ext/intl/ |
H A D | php_intl.stub.php | 124 function collator_compare(Collator $object, string $string1, string $string2): int|false {} argument
|
H A D | php_intl_arginfo.h | 210 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|