Skip to content

Instantly share code, notes, and snippets.

@fedmich
Created May 11, 2012 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fedmich/2658376 to your computer and use it in GitHub Desktop.
Save fedmich/2658376 to your computer and use it in GitHub Desktop.
Regular Expressions (RegEx)
<?php
if(preg_match( '@.*\.(png|jpeg|jpg|gif|bmp)@i', $url) ){
$img_type = 'image';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment