doudui1850 2018-01-14 16:23
浏览 122
已采纳

如何使用htmlspecialchars()但在PHP中保持<a>标签和其他标签?

I am trying to use htmlspecialchars() but want to preserve the following tags:

<a>, <b> and <i>.

How would I go about doing so?

The solutions that I have found do not seem to work together with an attribute tag and a normal plain tag.

Here is a piece of code that I have found that is supposed to allow for tags with attributes:

function fix_attributes($match){
    return "<".$match[1].str_replace('&quot;','"',$match[2]).">";
}
function allow_only($str, $allowed){
    $str = htmlspecialchars($str);
    foreach( $allowed as $a ){
        $str = preg_replace_callback("/&lt;(".$a."){1}([\s\/\.\w=&;:#]*?)&gt;/", fix_attributes, $str);
        $str = str_replace("&lt;/".$a."&gt;", "</".$a.">", $str);
    }
    return $str;
}
echo allow_only('This is <b>bold</b> and <a href="http://www.#links">this</a> is <i>italic</i>.', array("b","a","i"));

Source

However, it keeps giving me an error: Use of undefined constant fix_attributes

I would appreciate any help with this!

  • 写回答

1条回答 默认 最新

  • douchuoxuan3177 2018-01-14 16:37
    关注

    Problem: use callback function without quotes

    for more info see http://php.net/manual/en/function.preg-replace-callback.php

     <?php
        function fix_attributes($match){
            return "<".$match[1].str_replace('&quot;','"',$match[2]).">";
        }
        function allow_only($str, $allowed){
            $str = htmlspecialchars($str);
            foreach( $allowed as $a ){
                $str = preg_replace_callback("/&lt;(".$a."){1}([\s\/\.\w=&;:#]*?)&gt;/", "fix_attributes", $str);//use quotes here 
                $str = str_replace("&lt;/".$a."&gt;", "</".$a.">", $str);
            }
            return $str;
        }
        echo allow_only('This is <b>bold</b> and <a href="http://www.#links">this</a> is <i>italic</i>.', array("b","a","i"));
        ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题