CleverWebAdmin

Untitled

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