/php-src/ext/standard/ |
H A D | levenshtein.c | 28 return ZSTR_LEN(string2) * cost_ins; in reference_levdist() 30 if (ZSTR_LEN(string2) == 0) { in reference_levdist() 39 string1 = string2; in reference_levdist() 40 string2 = tmp; in reference_levdist() 43 p1 = safe_emalloc((ZSTR_LEN(string2) + 1), sizeof(zend_long), 0); in reference_levdist() 44 p2 = safe_emalloc((ZSTR_LEN(string2) + 1), sizeof(zend_long), 0); in reference_levdist() 46 for (i2 = 0; i2 <= ZSTR_LEN(string2); i2++) { in reference_levdist() 52 for (i2 = 0; i2 < ZSTR_LEN(string2); i2++) { in reference_levdist() 68 c0 = p1[ZSTR_LEN(string2)]; in reference_levdist() 80 zend_string *string1, *string2; in PHP_FUNCTION() local [all …]
|
H A D | basic_functions.stub.php | 2316 function strcoll(string $string1, string $string2): int {} 2502 function similar_text(string $string1, string $string2, &$percent = null): int {} 2580 function strnatcmp(string $string1, string $string2): int {} 2588 function strnatcasecmp(string $string1, string $string2): int {} 3098 function levenshtein(string $string1, string $string2, int $insertion_cost = 1, int $replacement_co…
|
H A D | basic_functions_arginfo.h | 824 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0) 967 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0) 1564 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0)
|
/php-src/Zend/ |
H A D | zend_builtin_functions.stub.php | 28 function strcmp(string $string1, string $string2): int {} argument 31 function strncmp(string $string1, string $string2, int $length): int {} argument 34 function strcasecmp(string $string1, string $string2): int {} argument 37 function strncasecmp(string $string1, string $string2, int $length): int {} argument
|
H A D | zend_builtin_functions_arginfo.h | 29 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0) 34 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0)
|
/php-src/ext/ldap/tests/ |
H A D | ldap_list_read_search_parallel_programming_errors.phpt | 57 "string2", 73 "string2", 88 "string2",
|
H A D | ldap_list_read_search_parallel_references.phpt | 20 "string2",
|
/php-src/ext/standard/tests/array/ |
H A D | array_flip_variation3.phpt | 47 'string_value2' => "string2", 98 ["string2"]=>
|
/php-src/Zend/tests/ |
H A D | get_defined_vars.phpt | 16 var $string = "string2"; 99 string(7) "string2"
|
/php-src/ext/intl/spoofchecker/ |
H A D | spoofchecker.stub.php | 66 public function areConfusable(string $string1, string $string2, &$errorCode = null): bool {} argument
|
H A D | spoofchecker_arginfo.h | 14 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0)
|
/php-src/ext/intl/collator/ |
H A D | collator.stub.php | 90 public function compare(string $string1, string $string2): int|false {} argument
|
H A D | collator_arginfo.h | 14 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0)
|
/php-src/ext/pdo_sqlite/ |
H A D | pdo_sqlite.c | 336 int string2_len, const void *string2) in php_sqlite_collation_callback() argument 345 ZVAL_STRINGL(&zargs[1], (char *) string2, string2_len); in php_sqlite_collation_callback()
|
H A D | sqlite_driver.c | 456 …callback(void *context, int string1_len, const void *string1, int string2_len, const void *string2) in php_sqlite3_collation_callback() argument 465 ZVAL_STRINGL(&zargs[1], (char *) string2, string2_len); in php_sqlite3_collation_callback()
|
/php-src/ext/sodium/ |
H A D | libsodium.stub.php | 775 function sodium_add(string &$string1, string $string2): void {}
|
H A D | libsodium_arginfo.h | 439 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0) 444 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0)
|
/php-src/ext/standard/tests/strings/ |
H A D | chunk_split_variation12.phpt | 93 …gng \k escaThis is simple heredoc stringpe char 22This is simple heredoc string2.This is simple he…
|
H A D | strcasecmp.phpt | 48 class string2 { 53 $obj_string2 = new string2;
|
H A D | strcmp.phpt | 48 class string2 { 53 $obj_string2 = new string2;
|
/php-src/ext/intl/ |
H A D | php_intl.stub.php | 295 function collator_compare(Collator $object, string $string1, string $string2): int|false {} argument
|
H A D | php_intl_arginfo.h | 211 ZEND_ARG_TYPE_INFO(0, string2, IS_STRING, 0)
|