How to pass double quotations in a php variable?

by ryan.murray , in category: PHP General , a year ago

How to pass double quotations in a php variable?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by elisha_langworth , a year ago

@ryan.murray 

To pass double quotations in a PHP variable, you can escape them using a backslash (). Here's an example:

1
$doubleQuotes = "Here is an example of "double quotations"";


In this example, the backslash before the double quotation marks escapes them, allowing them to be included in the string assigned to the variable.

Related Threads:

How to pass a variable from python 3 to php?
How to pass a javascript variable to a PHP file?
How to pass string variable from dart to php file?
How to pass a <td></td> value to a php variable?
How to remove double quotes from a sql query using with php?
How to pass a file as a graphql variable?