我正在使用WordPress
,并希望创建一个仅将PHP函数htmlspecialchars
应用于<code></code>
标记之间的代码的函数。我很欣赏这可能相当简单,但我是PHP的新手,无法找到有关如何执行此操作的任何参考。
到目前为止,我有以下内容:
function FilterCodeOnSave( $content, $post_id ) {
return htmlspecialchars($content, ENT_NOQUOTES);
}
显然上面的内容很简单,并且在我的页面的整个内容上执行htmlspecialchars。我需要将函数限制为仅应用于代码标记之间的HTML(每页上可能有多个代码标记)。
任何帮助都将不胜感激。
谢谢, 詹姆斯
答案 0 :(得分:1)
编辑:更新以避免多个CODE标记
试试这个:
<?php
// test data
$textToScan = "Hi <code>test12</code><br>
Line 2 <code><br>
Test <b>Bold</b><br></code><br>
Test
";
// debug:
echo $textToScan . "<hr>";
// the regex pattern (case insensitive & multiline
$search = "~<code>(.*?)</code>~is";
// first look for all CODE tags and their content
preg_match_all($search, $textToScan, $matches);
//print_r($matches);
// now replace all the CODE tags and their content with a htmlspecialchars() content
foreach($matches[1] as $match){
$replace = htmlspecialchars($match);
// now replace the previously found CODE block
$textToScan = str_replace($match, $replace, $textToScan);
}
// output result
echo $textToScan;
?>
答案 1 :(得分:0)
使用DOMDocument获取所有&lt; code&gt;标签;
// in this example $dom is an instance of DOMDocument
$code_tags = $dom->getElementsByTagName('code');
if ($code_tags) {
foreach ($code_tags as $node) {
// [...]
}
// [...]
}
答案 2 :(得分:0)
我知道这有点晚了,但是您可以先调用htmlspecialchars函数,然后在输出时调用htmlspecialchars_decode函数