をチェックするのは、私は次のコードがあるとしましょう:PHP str_replace;交換するよりも多くの部分
$string = "Hello! This is a test. Hello this is a test!"
echo str_replace("Hello", "Bye", $string);
これはBye
で$string
内のすべてのHello
に置き換えられます。どのようにすればいいですか? Hello
の後に!
のすべての部分を除外します。
手段は、私はこの出力をしたい:Hello! This is a test. Bye this is a test!
はそれを行うにはPHPの方法はありますか?