Skip to content

Instantly share code, notes, and snippets.

@chrisshennan
Created August 31, 2015 11:04
Show Gist options
  • Save chrisshennan/5c2ae926ca4a2acf2567 to your computer and use it in GitHub Desktop.
Save chrisshennan/5c2ae926ca4a2acf2567 to your computer and use it in GitHub Desktop.
A list of useful regular expressions I commonly use
<?php
// Check if link absolute starts with (http, https or //)
preg_match('/^(http(s)?:)?\/\//', $link, $matches);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment