Skip to content

Instantly share code, notes, and snippets.

@paulund
Created April 6, 2013 17:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulund/5326940 to your computer and use it in GitHub Desktop.
Save paulund/5326940 to your computer and use it in GitHub Desktop.
Replace anything that is not an 'a-z', 'A-Z', or '0-9' from the given $value
<?php
// Replace anything that is not an 'a-z', 'A-Z', or '0-9' from the given $value
$value = preg_replace( "/[^a-zA-Z0-9\s]/", "", $value );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment