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