Answer by Useless Code for PHP - a function to "sanitize" a string
<?phpfunction sanitize($s) { // This RegEx removes any group of non-alphanumeric or dash // character and replaces it/them with a dash return strtolower(preg_replace('/[^a-z0-9-]+/i', '-',...
View ArticleAnswer by rockerest for PHP - a function to "sanitize" a string
Not sure why @Dagon chose to leave a comment instead of an answer, but here's an expansion of his answer.php's preg_replace function allows you to replace anything with anything else.Here's an example...
View ArticleAnswer by Jake for PHP - a function to "sanitize" a string
I found a few interesting solutions throughout the web.. note none of this is my code. Simply copied here in hopes of helping you build a custom function for your own app.This has been copied from...
View ArticleAnswer by gmhk for PHP - a function to "sanitize" a string
You can think of writing this piece of code with the help of regular expressions.But I dont see any available functions which help you directly replace the "" with "-"
View ArticleAnswer by Aaron Newton for PHP - a function to "sanitize" a string
You might like to try preg_replace:http://php.net/manual/en/function.preg-replace.phpExample from this page:<?php$string = 'April 15, 2003';$pattern = '/(\w+) (\d+), (\d+)/i';$replacement =...
View ArticleAnswer by AC2MO for PHP - a function to "sanitize" a string
This should produce the desired result:$someword = strtolower(preg_replace("/[^a-z]+/i", "-", $theword));
View ArticlePHP - a function to "sanitize" a string
is there any PHP function available that replaces spaces and underscores from a string with dashes?Like:Some WordSome_WordSome___WordSome WordSome ) # $ ^ Word=>some-wordbasically, the sanitized...
View Article