Answers for "replace space in url with dash php"

PHP
24

php remove last character in string

//Remove the last character using substr
$string = substr($string, 0, -1);
Posted by: Guest on April-02-2020
0

php replace all spaces with dashes

// Clean up multiple dashes or whitespaces
$string = preg_replace("/[\s-]+/", " ", $string);
// Convert whitespaces and underscore to dash
$string = preg_replace("/[\s_]/", "-", $string);
Posted by: Guest on July-01-2020

Code answers related to "replace space in url with dash php"

Browse Popular Code Answers by Language