In this tutorial we will see How To Replace Space With Dash in PHP. PHP str_replace() Function can be used to replace the Space With Dash in PHP.
Table of Contents
PHP str_replace() Function
PHP str_replace() Function replaces given characters or a string with other string or characters.
In this example str_replace() function is used to replace the space with dash.
<?php
$string = "This is HowToCodeSchool.com";
$string = str_replace(' ', '-', $string);
echo $string;
?>
In above code of PHP, space is replaced with dash.
More PHP Replace Tutorial:
Replace Space With Underscore in PHPReplace Space With in PHP
Replace Dash With Space in PHP
Replace Underscore With Space in PHP
Replace Double Quotes With Single Quotes in PHP
Replace Single Quotes With Double Quotes in PHP