PHP: Work with a large string with quotes

后端 未结 3 1998
时光说笑
时光说笑 2021-01-23 17:31

Suppose I have a large string of HTML code. It has both double quotes and single quotes. How can I work with such a string? I want to assign it to a php var but the

3条回答
  •  被撕碎了的回忆
    2021-01-23 18:35

    use Heredoc

    $var = <<Sally O'Connel
    HTML;

    Please ensure that there is no space character after HTML;

提交回复
热议问题