Home
last modified time | relevance | path

Searched refs:strrpos (Results 1 – 25 of 32) sorted by relevance

12

/PHP-7.4/ext/standard/tests/strings/
H A Dstrrpos.phpt2 strrpos() function
5 var_dump(strrpos("test test string", "test"));
9 var_dump(strrpos("test string", "g"));
10 var_dump(strrpos("te".chr(0)."st", chr(0)));
11 var_dump(strrpos("tEst", "test"));
12 var_dump(strrpos("teSt", "test"));
13 var_dump(@strrpos("foo", "f", 1));
14 var_dump(@strrpos("", ""));
15 var_dump(@strrpos("a", ""));
16 var_dump(@strrpos("", "a"));
[all …]
H A Dstrrpos_basic2.phpt17 var_dump( strrpos("Hello, World", "Hello", 0) );
18 var_dump( strrpos("Hello, World", 'Hello', 1) );
19 var_dump( strrpos('Hello, World', 'World', 1) );
20 var_dump( strrpos('Hello, World', "World", 5) );
24 var_dump( strrpos($heredoc_str, 'Hello', 0) );
25 var_dump( strrpos($heredoc_str, 'Hello', 1) );
26 var_dump( strrpos($heredoc_str, $heredoc_str, 0) );
27 var_dump( strrpos($heredoc_str, $heredoc_str, 1) );
30 var_dump( strrpos("Hello, World", "o", 3) );
31 var_dump( strrpos("Hello, World", "o", 6) );
[all …]
H A Dstrrpos_basic1.phpt2 Test strrpos() function : basic functionality - with default arguments
17 var_dump( strrpos("Hello, World", "Hello") );
18 var_dump( strrpos('Hello, World', "hello") );
19 var_dump( strrpos("Hello, World", 'World') );
20 var_dump( strrpos('Hello, World', 'WORLD') );
23 var_dump( strrpos("Hello, World", "o") );
24 var_dump( strrpos("Hello, World", ",") );
27 var_dump( strrpos($heredoc_str, "Hello, World") );
28 var_dump( strrpos($heredoc_str, 'Hello') );
29 var_dump( strrpos($heredoc_str, $heredoc_str) );
[all …]
H A Dstrrpos_offset.phpt2 strrpos() offset integer overflow
6 var_dump(strrpos("t", "t", PHP_INT_MAX+1));
7 var_dump(strrpos("tttt", "tt", PHP_INT_MAX+1));
8 var_dump(strrpos(100, 101, PHP_INT_MAX+1));
9 var_dump(strrpos(1024, 1024, PHP_INT_MAX+1));
10 var_dump(strrpos(1024, 1024, -PHP_INT_MAX));
11 var_dump(strrpos(1024, "te", -PHP_INT_MAX));
12 var_dump(strrpos(1024, 1024, -PHP_INT_MAX-1));
13 var_dump(strrpos(1024, "te", -PHP_INT_MAX-1));
18 Warning: strrpos() expects parameter 3 to be int, float given in %s on line %d
[all …]
H A Dstrrpos_variation4.phpt5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function by passing heredoc string containing special chars for haystack
14 echo "*** Testing strrpos() function: with heredoc strings ***\n";
21 var_dump( strrpos($special_chars_str, "Ex'ple", 0) );
22 var_dump( strrpos($special_chars_str, "!@@!", 23) );
23 var_dump( strrpos($special_chars_str, '_') );
24 var_dump( strrpos($special_chars_str, '("_")') );
25 var_dump( strrpos($special_chars_str, "$*") );
26 var_dump( strrpos($special_chars_str, "$*", 10) );
27 var_dump( strrpos($special_chars_str, "(special)") );
[all …]
H A Dstrrpos_variation7.phpt2 Test strrpos() function : usage variations - empty heredoc string for 'haystack' argument
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function by passing empty heredoc string for haystack
14 echo "*** Testing strrpos() function: with heredoc strings ***\n";
18 var_dump( strrpos($empty_string, "") );
19 var_dump( strrpos($empty_string, "", 1) );
20 var_dump( strrpos($empty_string, FALSE) );
21 var_dump( strrpos($empty_string, NULL) );
26 *** Testing strrpos() function: with heredoc strings ***
31 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
[all …]
H A Dstrrpos_variation11.phpt5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
79 // loop through each element of the array and check the working of strrpos()
84 var_dump( strrpos($values[$index], $values[$index]) );
85 var_dump( strrpos($values[$index], $values[$index], 1) );
92 *** Testing strrpos() function with unexpected values for haystack and needle ***
158 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
161 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
165 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
168 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
172 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
[all …]
H A Dstrrpos_variation3.phpt2 Test strrpos() function : usage variations - multi line heredoc string for 'haystack' argument
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function by passing multi-line heredoc string for haystack and
14 echo "*** Testing strrpos() function: with heredoc strings ***\n";
21 var_dump( strrpos($multi_line_str, "ing", 0) );
22 var_dump( strrpos($multi_line_str, "ing", 15) );
23 var_dump( strrpos($multi_line_str, "ing", 22) );
24 var_dump( strrpos($multi_line_str, "") );
25 var_dump( strrpos($multi_line_str, " ") );
30 *** Testing strrpos() function: with heredoc strings ***
H A Dstrrpos_variation5.phpt2 Test strrpos() function : usage variations - heredoc string containing escape chars for 'haystack' …
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function by passing heredoc string containing escape chars for haystack
14 echo "*** Testing strrpos() function: with heredoc strings ***\n";
20 var_dump( strrpos($control_char_str, "\n") );
21 var_dump( strrpos($control_char_str, "\t") );
22 var_dump( strrpos($control_char_str, "\n", 12) );
23 var_dump( strrpos($control_char_str, "\t", 15) );
28 *** Testing strrpos() function: with heredoc strings ***
H A Dstrrpos_variation10.phpt2 Test strrpos() function : usage variations - unexpected inputs for 'needle' argument
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function with unexpected inputs for 'needle' and
14 echo "*** Testing strrpos() function with unexpected values for needle ***\n";
86 var_dump( strrpos($haystack, $needles[$index]) );
95 *** Testing strrpos() function with unexpected values for needle ***
134 Warning: strrpos(): needle is not a string or an integer in %s on line %d
138 Warning: strrpos(): needle is not a string or an integer in %s on line %d
142 Warning: strrpos(): needle is not a string or an integer in %s on line %d
146 Warning: strrpos(): needle is not a string or an integer in %s on line %d
[all …]
H A Dstrrpos_variation6.phpt2 Test strrpos() function : usage variations - heredoc string containing quotes for 'haystack' argume…
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function by passing heredoc string containing quotes for haystack
14 echo "*** Testing strrpos() function: with heredoc strings ***\n";
22 var_dump( strrpos($quote_char_str, "line") );
23 var_dump( strrpos($quote_char_str, 'things') );
24 var_dump( strrpos($quote_char_str, 'things', 0) );
25 var_dump( strrpos($quote_char_str, "things", 20) );
29 *** Testing strrpos() function: with heredoc strings ***
H A Dstrrpos_negative_offset.phpt5 var_dump(strrpos("haysthack", 'ha', -9));
6 var_dump(strrpos("haystack", 'h', -8));
7 var_dump(strrpos("haystack", 'k', -1));
8 var_dump(strrpos("haystack", "ka", -1));
9 var_dump(strrpos("haystack", 'a', -3));
10 var_dump(strrpos("haystack", 'a', -4));
11 var_dump(@strrpos("haystack", 'h', -9));
H A Dstrrpos_variation15.phpt7 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
81 // loop through each element of the array and check the working of strrpos()
85 var_dump( strrpos($values[$index], $values[$index], $values[$index]) );
127 Warning: strrpos() expects parameter 3 to be int, float given in %s on line %d
139 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
143 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
147 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
151 Warning: strrpos() expects parameter 1 to be string, array given in %s on line %d
175 Warning: strrpos() expects parameter 3 to be int, object given in %s on line %d
179 Warning: strrpos() expects parameter 3 to be int, string given in %s on line %d
[all …]
H A Dstrrpos_variation13.phpt2 Test strrpos() function : usage variations - checking bianry safe with 'needle' argument
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function with null terminated strings for 'needle' argument
14 echo "*** Test strrpos() function: binary safe ***\n";
28 var_dump( strrpos($haystack, $needles[$index]) );
29 var_dump( strrpos($haystack, $needles[$index], $index) );
34 *** Test strrpos() function: binary safe ***
H A Dstrrpos_variation12.phpt2 Test strrpos() function : usage variations - checking binary safe with 'haystack' argument
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function with null terminated strings for 'haystack' argument
14 echo "*** Test strrpos() function: binary safe ***\n";
26 var_dump( strrpos($haystacks[$index], "\0") );
27 var_dump( strrpos($haystacks[$index], "\0", $index) );
32 *** Test strrpos() function: binary safe ***
H A Dstrrpos_variation2.phpt2 Test strrpos() function : usage variations - single quoted strings for 'haystack' & 'needle' argume…
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
12 echo "*** Testing strrpos() function: with single quoted strings ***\n";
70 var_dump( strrpos($haystack, $needle[$index]) );
71 var_dump( strrpos($haystack, $needle[$index], $index) );
77 *** Testing strrpos() function: with single quoted strings ***
113 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
116 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
120 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
123 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
[all …]
H A Dstrrpos_variation1.phpt2 Test strrpos() function : usage variations - double quoted strings for 'haystack' & 'needle' argume…
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
12 echo "*** Testing strrpos() function: with double quoted strings ***\n";
69 var_dump( strrpos($haystack, $needle[$index]) );
70 var_dump( strrpos($haystack, $needle[$index], $index) );
76 *** Testing strrpos() function: with double quoted strings ***
112 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
115 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
119 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
122 Deprecated: strrpos(): Non-string needles will be interpreted as strings in %s on line %d
[all …]
H A Dstrrpos_variation8.phpt2 Test strrpos() function : usage variations - repetitive chars for 'haystack' argument
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function with strings containing multiple occurrences of 'needle' in the 'haystac…
14 echo "*** Testing strrpos() function: strings repetitive chars ***\n";
22 var_dump( strrpos($haystack, $needle, $offset) );
28 *** Testing strrpos() function: strings repetitive chars ***
H A Dbug40754.phpt22 var_dump(strrpos("abcde", "abc", $v));
56 Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
/PHP-7.4/ext/mbstring/tests/
H A Dbug43841.phpt32 echo "strrpos:\n";
33 var_dump(strrpos('This is na English ta', 'a', $i));
47 strrpos:
49 Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
62 strrpos:
64 Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
73 strrpos:
82 strrpos:
H A Dmb_get_info.phpt45 ["strrpos"]=>
109 ["strrpos"]=>
135 ["strrpos"]=>
H A Dbug45923.phpt23 section('strrpos' , "abc abc abc" , "abc");
138 ------- strrpos -----------
152 Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
162 Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
/PHP-7.4/ext/standard/tests/file/windows_acls/
H A Dbug44859.phpt10 $uniqueBasePath = substr(__FILE__, 0, strrpos(__FILE__, '.'));
H A Dbug44859_2.phpt10 $uniqueBasePath = substr(__FILE__, 0, strrpos(__FILE__, '.'));
/PHP-7.4/ext/pdo_dblib/tests/
H A Dconfig.inc23 return $needle === "" || strrpos($haystack, $needle, -strlen($haystack)) !== false;

Completed in 29 milliseconds

12