Lines Matching refs:strripos
2 Test strripos() function : usage variations - heredoc string containing special chars for 'haystack…
5 /* Prototype : int strripos ( string $haystack, string $needle [, int $offset] );
10 /* Test strripos() function by passing heredoc string containing special chars for haystack
14 echo "*** Testing strripos() function: with heredoc strings ***\n";
21 var_dump( strripos($special_chars_str, "Ex'pLE", 0) );
22 var_dump( strripos($special_chars_str, "!@@!", 23) );
23 var_dump( strripos($special_chars_str, '_') );
24 var_dump( strripos($special_chars_str, '("_")') );
25 var_dump( strripos($special_chars_str, "$*") );
26 var_dump( strripos($special_chars_str, "$*", 10) );
27 var_dump( strripos($special_chars_str, "(speCIal)") );
32 *** Testing strripos() function: with heredoc strings ***