第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

php5.5 preg_replace 使用e問題,改寫成preg_replace_callback

php5.5 preg_replace 使用e問題,改寫成preg_replace_callback

翻翻過去那場雪 2019-04-16 16:58:39
publicfunctionentity_decode($str,$charset='UTF-8'){if(stristr($str,'&')===FALSE){return$str;}$str=html_entity_decode($str,ENT_COMPAT,$charset);$str=preg_replace('~&#x(0*[0-9a-f]{2,5})~ei','chr(hexdec("\\1"))',$str);returnpreg_replace('~&#([0-9]{2,4})~e','chr(\\1)',$str);}麻煩使用preg_replace_callback改寫下該方法,謝謝。
查看完整描述

2 回答

?
守候你守候我

TA貢獻1802條經(jīng)驗 獲得超10個贊

phppublicfunctionentity_decode($str,$charset='UTF-8'){
if(stristr($str,'&')===false){
return$str;
}
$str=html_entity_decode($str,ENT_COMPAT,$charset);
$str=preg_replace_callback(
'/&#x(0*[0-9a-f]{2,5})/i',
function($matches){
returnchr(hexdec($matches[1]));
},
$str
);
returnpreg_replace_callback('/&#([0-9]{2,4})/',function($matches){
returnchr($matches[1]);
},$str);
}
                            
查看完整回答
反對 回復 2019-04-16
?
慕無忌1623718

TA貢獻1744條經(jīng)驗 獲得超4個贊

題主是從CI里復制的代碼吧?上面那個答案中1改成0我是這樣寫的。。
publicfunctionentity_decode($str,$charset='UTF-8')
{
if(stristr($str,'&')===FALSE)
{
return$str;
}
$str=html_entity_decode($str,ENT_COMPAT,$charset);
if(version_compare(PHP_VERSION,'5.5.0','>='))
{
$str=preg_replace_callback(
'/&#x(0*[0-9a-f]{2,5})/i',
function($matches){
returnchr(hexdec($matches[0]));
},
$str
);
returnpreg_replace_callback(
'/&#([0-9]{2,4})/',
function($matches){
returnchr($matches[0]);
},
$str
);
}
$str=preg_replace('~&#x(0*[0-9a-f]{2,5})~ei','chr(hexdec("\\1"))',$str);
returnpreg_replace('~&#([0-9]{2,4})~e','chr(\\1)',$str);
}
                            
查看完整回答
反對 回復 2019-04-16
  • 2 回答
  • 0 關注
  • 526 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號