<?php
/**
* Remove all non alpha numeric characters except a space
* @param string $string The string to cleanse
* @return string
*/
function alphanumericAndSpace( $string )
{
return preg_replace('/[^a-zA-Z0-9\s]/', '', $string);
}
?>
Remove all non alpha numeric characters except a space
gennaio 23, 2012 By Leave a Comment