In this tutorial we will see How To Replace Underscore With Space in PHP. PHP str_replace() Function can be used to replace the Underscore With Space 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 underscore with space.
<?php
$string = "Learn_PHP_at_HowToCodeSchool.com";
$string = str_replace('_', ' ', $string);
echo $string;
?>
In above code of PHP, underscore is replaced with space.
More PHP Replace Tutorial:
Replace Space With Underscore in PHPReplace Space With Dash in PHP
Replace Space With in PHP
Replace Dash With Space in PHP
Replace Double Quotes With Single Quotes in PHP
Replace Single Quotes With Double Quotes in PHP