Hi I was wondering if there is an easy way to escape strings in php.
In python I use \"\"\" \"\"\", and everything between there is escaped. so when using special c
Since PHP 5.3, you can use nowdoc. As opposed to heredoc, nowdoc does not expand variables inside it.