2

我有类似的东西<code> <1> <2> </code>,我想得到这个:<code> &lt;1&gt; &lt;2&gt; </code>但我只想在<code></code>标签内应用它,而不是在其他任何地方。

我已经有了这个:

$txt = $this->input->post('field');
$patterns = array(
    "other stuff to find", "/<code>.*(<).*<\/code>/m"
);
$replacements = array(
    "other stuff to replace", "&lt;"
);

$records = preg_replace($patterns,$replacements, $txt);

它成功替换了字符,但删除了包围的<code></code>标签

任何帮助将不胜感激!谢谢

4

2 回答 2

3

其他可能性,使用回调函数:

<?php
$test = "<code> <1> <2></code> some other text <code> other code <1> <2></code>";
$text = preg_replace_callback("#<code>(.*?)</code>#s",'replaceInCode',$test);
echo htmlspecialchars($test."<br />".$text);

function replaceInCode($row){
    $replace = array('<' => '&lt','>' => '&gt');
    $text=str_replace(array_keys($replace),array_values($replace),$row[1]);
    return "<code>$text</code>";
}

没有第二个功能就不容易(甚至不确定是否可能),因为块内可以有多个 < 符号。

在这里阅读更多:http: //php.net/preg_replace_callback

于 2012-10-25T14:34:02.913 回答
0

您可以使用正则表达式来完成,但不能一次性完成。我建议您单独处理其他替代品。下面的代码将处理 <code> 部分中的伪标签:

$source = '<code> <1> <2> </code>';

if ( preg_match_all( '%<code>(.*?<.*?)</code>%s', $source, $code_sections ) ) {

    $modified_code_sections = preg_replace( '/<([^<]+)>/', "&lt;$1&gt;", $code_sections[1] );
    array_walk( $modified_code_sections, function ( &$content ) { $content = "<code>$content</code>"; } );
    $source_modified = str_replace( $code_sections[0], $modified_code_sections, $source );

}

echo $source_modified;
于 2012-10-25T13:59:50.593 回答