Skip to content

Instantly share code, notes, and snippets.

@enlacee
Created March 17, 2015 17:38
Show Gist options
  • Save enlacee/ecdab6bfbbeca757d888 to your computer and use it in GitHub Desktop.
Save enlacee/ecdab6bfbbeca757d888 to your computer and use it in GitHub Desktop.
REGEX php
$str = 'https://www.google.com';
$str = preg_replace('#^https?://#', '', $str);
$str = preg_replace('#\/#', '', $str);
echo $str;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment