我想从我的Wordpress网站复制文本,当我使用它时,某些文本不能完全复制,例如当它包含“或”时,所以我想将文本转换为特殊代码,例如印地文中的文本
सुनो!! ❤❤ेेेााहीही, नेेमेंमेंमेंमेंमें。
特殊代码就像
&#2360&#2369न&#2379 !! &#2342&#2367&#2354&#10084&#2343ड
ज>ेp p
如何在Wordpress内容中获取此信息?
我在Google中搜索了很多东西,但一无所获
当前我在我的Wordpress内容中使用了
<?php
$content = get_the_content();
$newcontent = preg_replace('#<br\s*/?>#i', "\n", $content);
$result = preg_replace('#</p\s*/?>#i', "\n", $newcontent);
echo $result;
?>
答案 0 :(得分:1)
function hexentities($str) {
$return = '';
for($i = 0; $i < strlen($str); $i++) {
$return .= '&#x'.bin2hex(substr($str, $i, 1)).';';
}
return $return;
}
$content = "सुनो!! दिल ❤ धड़कने लगता है ख़यालों से";
echo hexentities($content);
将渲染
सुनो!! दिल ❤ धड़कने लगता है ख़यालों से