PHP は、さまざまな文字列インターセプト関数を提供します。 substr(): 文字列の指定された部分をインターセプトします。 substring(): 文字列の末尾から先頭までの部分文字列をインターセプトします。 substr_replace(): 文字列の指定された部分を置換します。 str_replace(): 文字列の指定された部分を他の部分に置き換えます。
PHP で文字列をインターセプトする関数
PHP には、文字列をインターセプトするためのさまざまな関数が用意されています。一般的に使用されるものは次のとおりです。
例:
<code class="php">$string = "Hello World!"; $substring = substr($string, 0, 5); // "Hello"</code>
例:
<code class="php">$string = "Hello World!"; $substring = substring($string, 10, 5); // "World"</code>
例:
<code class="php">$string = "Hello World!"; $substring = substr_replace($string, "there", 7, 5); // "Hello there!"</code>
例:
<code class="php">$string = "Hello World!"; $substring = str_replace("World", "there", $string); // "Hello there!"</code>
以上がPHPで文字列をインターセプトする関数は何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。