方法: 1. str_replace() を使用して大文字と小文字を区別して削除します (構文 "str_replace(substring,'', string)"; 2. str_ireplace() を使用して大文字と小文字を区別しない方法で削除します削除、構文「str_ireplace(substring,'',string)」。
このチュートリアルの動作環境: Windows7 システム、PHP7.1 バージョン、DELL G3 コンピューター
php で、 string 指定された部分文字列は、文字列内の指定された部分文字列を空の文字列 ''
に置き換えることによって置き換えることができます。
指定された部分文字列を置換するには、str_ireplace() 関数と str_replace 関数を使用できます。これらの関数は、新しい文字列を使用して、元の文字列で指定された特定の文字列を置き換えます。str_replace は大文字と小文字を区別し、str_ireplace()
str_replace(find,replace,string,count) str_ireplace(find,replace,string,count)
Parameter | Description |
---|---|
##検索 | 必須。検索する値を指定します。|
replace | 必須。find の値を置き換える値を指定します。 |
必須。検索する文字列を指定します。 | |
オプション。置換の数をカウントする変数。 |
例 1: str_replace() 関数を使用して、指定された部分文字列「hello」を削除します。
<?php header("Content-type:text/html;charset=utf-8"); $str = 'hello,world,Hello,World'; $replace = ''; $search = 'hello'; echo str_replace($search, $replace, $str); ?>出力結果:
例 2: str_ireplace() 関数を使用して、指定された部分文字列「hello」を削除します。
#<?php header("Content-type:text/html;charset=utf-8"); $str = 'hello,world,Hello,World'; $replace = ''; $search = 'hello'; echo str_ireplace($search, $replace, $str); ?>
出力結果:
推奨学習 : 「PHP ビデオ チュートリアル 」
以上がPHPで文字列内の指定された部分文字列を削除する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。