doujia1163 2018-05-23 09:49
浏览 83
已采纳

将字符串转换为它的对应实体

So I have this annonymous function that converts every character of my string into entity.

var myStr = myStr.replace(/[\u0022\u0027\u0080-\FFFF]/g, function(a) {
   return '&#' + a.charCodeAt(0) + ';';
});  

I need to do the same with PHP.
I'll have a normal string and transform it it's equivalent entity code.
e.g:

Have --> Want: Képzeld el PDF ------->Képzeld el PDF

I was reading about preg_replace_callback

Perform a regular expression search and replace using a callback

But I don't know how to apply the same thing in PHP.
I could also use the annonymous function within preg_replace, like so:

 $line = preg_replace_callback(
        '/[\u0022\u0027\u0080-\FFFF]/g',
        function ($matches) {
            return '&#' + a.charCodeAt(0) + ';';
        },
    );

I couldn't make it work or find an equivalence for charCodeAt. Even the regex range of characters are not supported by preg_replace function.

  • 写回答

1条回答 默认 最新

  • dsedug8644 2018-05-23 12:23
    关注

    You could use IntlChar::ord() to find the codepoint of a character. Below is a transpiled version:

    $myStr = preg_replace_callback('~[\x{0022}\x{0027}\x{0080}-\x{ffff}]~u', function ($c) {
        return '&#' . IntlChar::ord($c[0]) . ';';
    }, $myStr);
    

    See live demo

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部