Home
last modified time | relevance | path

Searched refs:str1 (Results 1 – 25 of 59) sorted by relevance

123

/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_string_utils.c102 PRIV(strcmp)(PCRE2_SPTR str1, PCRE2_SPTR str2) in PRIV()
105 while (*str1 != '\0' || *str2 != '\0') in PRIV()
107 c1 = *str1++; in PRIV()
130 PRIV(strcmp_c8)(PCRE2_SPTR str1, const char *str2) in PRIV()
133 while (*str1 != '\0' || *str2 != '\0') in PRIV()
135 c1 = *str1++; in PRIV()
162 c1 = *str1++; in PRIV()
191 c1 = *str1++; in PRIV()
229 PRIV(strcpy_c8)(PCRE2_UCHAR *str1, const char *str2) in PRIV()
231 PCRE2_UCHAR *t = str1; in PRIV()
[all …]
/PHP-7.4/ext/standard/
H A Dlevenshtein.c81 static int custom_levdist(char *str1, char *str2, char *callback_name) in custom_levdist() argument
95 char *str1, *str2; in PHP_FUNCTION() local
103 if (zend_parse_parameters(2, "ss", &str1, &str1_len, &str2, &str2_len) == FAILURE) { in PHP_FUNCTION()
106 distance = reference_levdist(str1, str1_len, str2, str2_len, 1, 1, 1); in PHP_FUNCTION()
110 …if (zend_parse_parameters(5, "sslll", &str1, &str1_len, &str2, &str2_len, &cost_ins, &cost_rep, &c… in PHP_FUNCTION()
113 distance = reference_levdist(str1, str1_len, str2, str2_len, cost_ins, cost_rep, cost_del); in PHP_FUNCTION()
117 …if (zend_parse_parameters(3, "sss", &str1, &str1_len, &str2, &str2_len, &callback_name, &callback_… in PHP_FUNCTION()
120 distance = custom_levdist(str1, str2, callback_name); in PHP_FUNCTION()
/PHP-7.4/ext/standard/tests/strings/
H A Dstrnatcmp_leftalign.phpt7 /* Prototype : int strnatcmp ( string $str1 , string $str2 )
14 $str1 = " 00";
16 var_dump( strnatcmp( $str1, $str2) );
19 $str1 = " 0";
21 var_dump( strnatcmp( $str1, $str2) );
H A Dstrncmp_error.phpt5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
13 $str1 = 'string_val';
19 var_dump( strncmp($str1) ); //One argument, less than expected no. of args
20 var_dump( strncmp($str1, $str2) ); //Two arguments, less than expected no. of args
21 var_dump( strncmp($str1, $str2, $len, $extra_arg) ); //Four arguments, greater than expected no. o…
25 var_dump( strncmp($str1, $str2, $len) );
H A Dstrncasecmp_variation3.phpt5 /* Prototype : int strncasecmp ( string $str1, string $str2, int $len );
14 $str1 = "Hello, World\n";
18 for($len = strlen($str1); $len >= 0; $len--) {
19 var_dump( strncasecmp($str1, $str2, $len) );
H A Dstrncmp_variation3.phpt5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
14 $str1 = "Hello, World\n";
18 for($len = strlen($str1); $len >= 0; $len--) {
19 var_dump( strncmp($str1, $str2, $len) );
H A Dstrncasecmp_error.phpt5 /* Prototype : int strncasecmp ( string $str1, string $str2, int $len );
11 $str1 = 'string_val';
20 var_dump( strncasecmp($str1) );
21 var_dump( strncasecmp($str1, $str2) );
24 var_dump( strncasecmp($str1, $str2, $len, $extra_arg) );
28 var_dump( strncasecmp($str1, $str2, $len) );
H A Dstrncasecmp_variation7.phpt5 /* Prototype : int strncasecmp ( string $str1, string $str2, int $len );
10 /* Test strncasecmp() function with null terminated strings and binary values passed to 'str1' & 's…
15 $str1 = "Hello\0world";
18 var_dump( strncasecmp($str1, $str2, 12) );
H A Dstrncmp_variation7.phpt5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with binary values passed to 'str1' & 'str2' and with the null terminate…
15 $str1 = "Hello\0world";
17 var_dump( strncmp($str1, $str2, 12) ); //expected: int(5);
H A Dstrncasecmp_variation1.phpt5 /* Prototype : int strncasecmp ( string $str1, string $str2, int $len );
10 /* Test strncasecmp() function with upper-case and lower-case alphabets as inputs for 'str1' and 's…
13 echo "-- Passing upper-case letters for 'str1' --\n";
19 echo "\n-- Passing lower-case letters for 'str1' --\n";
28 -- Passing upper-case letters for 'str1' --
82 -- Passing lower-case letters for 'str1' --
H A Dstrncmp_variation1.phpt5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with upper-case and lower-case alphabets as inputs for 'str1' and 'str2'…
13 echo "-- Passing upper-case letters for 'str1' --\n";
19 echo "\n-- Passing lower-case letters for 'str1' --\n";
28 -- Passing upper-case letters for 'str1' --
82 -- Passing lower-case letters for 'str1' --
H A Dstrncmp_variation9.phpt5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with different strings for 'str1', 'str2' and considering case sensitive…
15 $str1 = <<<EOD
42 $str1,
/PHP-7.4/ext/zlib/tests/
H A Dgzseek_variation1.phpt13 $str1 = "This is the first line.";
15 gzwrite($h, $str1);
18 gzseek($h, strlen($str1) + 20);
22 echo gzread($h, strlen($str1))."\n";
H A Dgzseek_basic2.phpt13 $str1 = "This is the first line.";
15 gzwrite($h, $str1);
19 gzseek($h, strlen($str1) + 20);
26 echo gzread($h, strlen($str1))."\n";
H A Dgzseek_variation4.phpt13 $str1 = "This is the first line.";
15 gzwrite($h, $str1);
19 gzseek($h, strlen($str1) + 20, SEEK_SET);
26 echo gzread($h, strlen($str1))."\n";
H A Dgzseek_variation5.phpt13 $str1 = "This is the first line.";
15 gzwrite($h, $str1);
26 echo gzread($h, strlen($str1))."\n";
/PHP-7.4/ext/standard/tests/array/
H A Darray_merge_recursive_variation6.phpt21 $arr1_string_key = array("str1" => "hello", "str2" => 111, "str1" => "world", "str2" => 111.111);
24 $arr2 = array("one", "str1" => "two", array("one", "two"));
58 ["str1"]=>
83 ["str1"]=>
94 ["str1"]=>
H A Darray_merge_recursive_variation8.phpt17 $arr1 = array(b"1", b"hello" => "hello", b"world", "str1" => b"hello", "str2" => "world");
20 $arr2 = array(b"str1" => b"binary", b"hello" => "binary", b"str2" => b"binary");
40 ["str1"]=>
58 ["str1"]=>
H A Darray_merge_recursive_variation10.phpt20 "array" => array("hello", "world", "str1" => "hello", "str2" => 'world'),
64 ["str1"]=>
111 ["str1"]=>
154 ["str1"]=>
165 ["str1"]=>
H A Darray_diff_assoc_variation10.phpt21 "str1" => "hello",
39 ["str1"]=>
/PHP-7.4/ext/intl/collator/
H A Dcollator_compare.c34 char* str1 = NULL; in PHP_FUNCTION() local
50 &object, Collator_ce_ptr, &str1, &str1_len, &str2, &str2_len ) == FAILURE ) in PHP_FUNCTION()
76 &ustr1, &ustr1_len, str1, str1_len, COLLATOR_ERROR_CODE_P( co ) ); in PHP_FUNCTION()
/PHP-7.4/ext/pcre/tests/
H A Dbug44925.phpt5 $str1 = 'a';
8 $array=Array("1",2,3,1.1,FALSE,NULL,Array(), $str1, &$str2);
17 $str1 = 'x';
/PHP-7.4/ext/standard/tests/general_functions/
H A Dob_start_closures.phpt19 $str1 = ob_get_contents ();
27 echo $str1, $str2;
/PHP-7.4/ext/mbstring/tests/
H A Dmb_encode_numericentity.phpt10 $str1 = '¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùú…
13 echo mb_encode_numericentity($str1, $convmap, "UTF-8")."\n";
H A Dmb_decode_numericentity.phpt10 $str1 = '&#161;&#162;&#163;&#164;&#165;&#166;&#167;&#168;&#169;&#170;&#171;&#172;&#173;&#174;&#175;…
14 echo mb_decode_numericentity($str1, $convmap, "UTF-8")."\n";

Completed in 60 milliseconds

123