Answers for "php escape quotes multiple lines"

PHP
6

php multiple line string

//use EOD function for multiple line variable
$variable=<<<EOD
  this is line1
  this is line2
  EOD;
Posted by: Guest on June-09-2020
1

php quotations within quotations

<?php
  echo '<span onclick="$(this).addClass(\'selected\');"> </span>';
?>
Posted by: Guest on July-20-2020

Browse Popular Code Answers by Language