/php-src/ext/standard/ |
H A D | levenshtein.c | 21 static zend_long reference_levdist(const zend_string *string1, const zend_string *string2, zend_lon… in reference_levdist() argument 27 if (ZSTR_LEN(string1) == 0) { in reference_levdist() 31 return ZSTR_LEN(string1) * cost_del; in reference_levdist() 37 if (ZSTR_LEN(string1) < ZSTR_LEN(string2) && cost_ins == cost_rep && cost_rep == cost_del) { in reference_levdist() 38 const zend_string *tmp = string1; in reference_levdist() 39 string1 = string2; in reference_levdist() 49 for (i1 = 0; i1 < ZSTR_LEN(string1) ; i1++) { in reference_levdist() 53 c0 = p1[i2] + ((ZSTR_VAL(string1)[i1] == ZSTR_VAL(string2)[i2]) ? 0 : cost_rep); in reference_levdist() 80 zend_string *string1, *string2; in PHP_FUNCTION() local 85 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "SS|lll", &string1, &string2, &cost_ins, &cost_rep, &co… in PHP_FUNCTION() [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 | 823 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0) 966 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0) 1563 ZEND_ARG_TYPE_INFO(0, string1, 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 | 28 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0) 33 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/php-src/ext/standard/tests/strings/ |
H A D | addcslashes_002.phpt | 15 class string1 21 $obj = new string1;
|
H A D | trim1.phpt | 20 class string1 26 $obj = new string1;
|
H A D | rtrim.phpt | 21 class string1 { 26 $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-src/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-src/ext/standard/tests/array/ |
H A D | array_flip_variation3.phpt | 36 'string_value1' => 'string1', 84 ["string1"]=>
|
/php-src/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-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 | 13 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/php-src/ext/ldap/tests/ |
H A D | ldap_list_read_search_parallel_programming_errors.phpt | 17 "string1", 56 "string1",
|
/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 | 13 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/php-src/ext/pdo_sqlite/ |
H A D | pdo_sqlite.c | 335 static int php_sqlite_collation_callback(void *context, int string1_len, const void *string1, in php_sqlite_collation_callback() argument 344 ZVAL_STRINGL(&zargs[0], (char *) string1, string1_len); in php_sqlite_collation_callback()
|
H A D | sqlite_driver.c | 456 static int php_sqlite3_collation_callback(void *context, int string1_len, const void *string1, int … in php_sqlite3_collation_callback() argument 464 ZVAL_STRINGL(&zargs[0], (char *) string1, string1_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 | 438 ZEND_ARG_TYPE_INFO(1, string1, IS_STRING, 0) 443 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|
/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 | 210 ZEND_ARG_TYPE_INFO(0, string1, IS_STRING, 0)
|