-->

PHP字符串两个HTML标记之间更换(PHP String Replace between two

2019-10-29 17:32发布

我试图取代一个HTML文档中两个标记之间的文本。 我想更换不带<和>封闭的任何文字。 我想用str_replace函数来做到这一点。

php $string = '<html><h1> some text i want to replace</h1><p>some stuff i want to replace </p>';

$text_to_echo = str_replace("Bla","Da",$String);
echo $text_to_echo;

Answer 1:

尝试这个:

    <?php

$string = '<html><h1> some text i want to replace</h1><p>
    some stuff i want to replace </p>';
$text_to_echo =  preg_replace_callback(
    "/(<([^.]+)>)([^<]+)(<\\/\\2>)/s", 
    function($matches){
        /*
         * Indexes of array:
         *    0 - full tag
         *    1 - open tag, for example <h1>
         *    2 - tag name h1
         *    3 - content
         *    4 - closing tag
         */
        // print_r($matches);
        $text = str_replace(
           array("text", "want"), 
           array('TEXT', 'need'),
                $matches[3]
        );
        return $matches[1].$text.$matches[4];
    }, 
    $string
);
echo $text_to_echo;


Answer 2:

str_replace()不能处理这个

您需要regexpreg_replace



文章来源: PHP String Replace between two html tags