我无法在fwrite中使用href引号。 我没有的是这样的:
fwrite($fp, "Some text ".$SomeVar." some text :".$SomeVar.". Some text <a href="https://www.google.com/" target="_blank"><br>Some text <a href="https://www.google.com/" target="_blank">");
有什么办法可以将那些href引号标记为纯文本?
我读过某处使用双引号可能会有所帮助,但没有帮助。我也尝试过:
<a href="https://www.google.com/\" target="_blank\">
谢谢。
答案 0 :(得分:2)
It's easier to use single quotes when your string contains double quotes:
$string = '<a href="https://cia.gov">CIA</a>';
Or, you can escape the quotes like this:
$string = "<a href=\"https://cia.gov\">CIA</a>";