「PHP」str_replace関数で文字列の中の文字を置換する
書式
str_replace(
array|string $search,
array|string $replace,
string|array $subject,
int &$count = null
): string|array
$search 置換する文字列
$replace 置換したい文字列
$subject 置換対象
count 指定した場合は、マッチして置換が行われた箇所の個数がここに格納されます。
使用例
<?php $target = 'study'; $result = str_replace('u', 'k', $target); echo $result . PHP_EOL."<br>"; $result = str_replace('ud', 'info', $target); echo $result . PHP_EOL."<br>"; ?>
実行結果
stkdy
stinfoy