php 随笔

WBOY
Release: 2016-06-23 14:35:59
Original
1141 people have browsed it

html实体分为alpha entities(named entities)和numeric entities,php函数htmlspecialchars、htmlentities都只能转化为alpha entities,如果要转化为numeric entities要使用mb_encode_numericentity函数,如转化为GBK编码的numeric entities:

$str="(王贯)'

$convmap=array(0x0,0xffff,0,0xffff);

$str=mb_encode_numericentity($str, $convmap,'gbk'); 

输出:(??疮)'

 

 更新:

Numeric Character Reference  (简称:NCR):

Character entities references :<

 

十进制的65279(16进制的0xFEFF) 是Unicode编码中的传输控制字符


 

 

 

 

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template