Advertisement
rbarom

Untitled

Oct 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. // For php4 compatibility
  2. if (!function_exists("stripos")) {
  3.     function stripos($haystack, $needle){
  4.         return strpos($haystack, stristr( $haystack, $needle ));
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement