Answers for "convert double quotes to single quotes php"

PHP
1

php single quote vs double quote

$s = "dollars";
echo 'This costs a lot of $s.'; // This costs a lot of $s.
echo "This costs a lot of $s."; // This costs a lot of dollars.
Posted by: Guest on December-22-2021
-1

how to print any string in double quotes in php

$web = "...if (url.contains(".mp4"))..."
Posted by: Guest on May-26-2020

Code answers related to "convert double quotes to single quotes php"

Browse Popular Code Answers by Language