PHP str_replace()で文字列内を検索して削除するサンプル
環境
PHP 8.1.2
Ubuntu 22.04.1 LTS
構文
$result = str_replace(=検索して削除する文字列, “", 対象の文字列);
str_replace()を使って文字列(string)内を検索して削除します
第1引数に検索して削除する文字、第2引数に空文字、第3引数に検索対象の文字列を指定します。
使用例
<?php $text = "Study, Arkgame"; //文字列の"rl"を検索し、削除する $result = str_replace("Ark", "", $text); echo $result; ?>
実行結果
Study, game