CleverWebAdmin

Untitled

Aug 19th, 2014
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1.  
  2. $user_url = 'http://example.com/bla/bla/bla/file.ext';
  3.  
  4. if (stripos($user_url, 'http') === 0) {
  5.     $user_url = substr($user_url, 5);
  6. } elseif (stripos($user_url, 'https') === 0) {
  7.     $user_url = substr($user_url, 6);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment