quote.'","'.$item->author.'");">'; 现在 - 这工作得很好 - 如果 $item->quo-6ren">
gpt4 book ai didi

php - 字符串处理 Java/html/php

转载 作者:行者123 更新时间:2023-12-02 18:47:08 26 4
gpt4 key购买 nike

echo '<button class="modalInput" title="Is there an error in this question, report it here." rel="#prompt" onClick="params('.$item->catid.','.$item->id.',"'.$item->quote.'","'.$item->author.'");">';

现在 - 这工作得很好 - 如果 $item->quote 和 $item->author 不包含任何值,例如:

我叔叔家谁说“Ich bin ein Berliner”?

那么参数字符串就会变得非常困惑......

  <button class="modalInput" title="Is there an error in this question, report it here." rel="#prompt" onClick="params(21,12,"Who said "ich bin ein Berliner"","George Bush");">

我该如何解决这个问题?

<小时/>

还是不行

   echo '<button class="modalInput" title="Is there an error in this question, report it here." rel="#prompt" onClick="params('.$item->catid.','.$item->id.',\''.htmlspecialchars($item->quote).'\',\''.(string) htmlspecialchars($item->author).'\');">';

变成

  <button class="modalInput" title="Is there an error in this question, report it here." rel="#prompt" onClick="params(29,29,'In a FOX TV show, what did 'The OC' stand for','Orange County');">

最佳答案

使用htmlspecialchars函数,它将编码(转义)特殊字符,例如" 将变为 ":

echo htmlspecialchars($item->quote);

关于php - 字符串处理 Java/html/php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16252473/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com