PHP Echo a large block of text

后端 未结 11 902
南方客
南方客 2021-01-30 21:00

Im new to PHP and I can\'t figure out what the rules are for using the echo function. For example, if I need to echo a large block of css/js, do I need to add echo to each line

11条回答
  •  天涯浪人
    2021-01-30 21:14

    Your problem is actually caused by:

    $('input_6').hint('ex: myname@example.com');
    

    You need to escape the single quotes to be \'

    However: Using a Heredoc is a much better idea, as it will be much cleaner overall.

提交回复
热议问题