Quantcast
Channel: PHP - a function to "sanitize" a string - Stack Overflow
Browsing latest articles
Browse All 7 View Live

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 Article


Answer 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 Article


Answer 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 Article

Answer 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 Article

Answer 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 Article


Answer 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 Article

PHP - 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
Browsing latest articles
Browse All 7 View Live