在 href 中写引号

fwrite quotes in href

我在处理 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\">

谢谢。

当您的字符串包含双引号时,使用单引号更容易:

$string = '<a href="https://cia.gov">CIA</a>';

或者,您可以像这样转义引号:

$string = "<a href=\"https://cia.gov\">CIA</a>";