0

HTML ドキュメントの 2 つのタグの間のテキストを置き換えようとしています。< と > で囲まれていないテキストを置き換えたい。これを行うには 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;
4

2 に答える 2

0

str_replace()これを処理することはできません

そのためにはregexまたはが必要ですpreg_replace

于 2013-11-13T18:57:24.903 に答える
0

これを試して:

    <?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;
于 2013-11-13T18:59:20.363 に答える