置き換え

文字列の置換

$new_line = str_replace ( $OLD_COLOR, $NEW_COLOR, $old_line);

全角スペース、タブを半角スペースに置換する

$str = preg_replace('/\s+/', ' ', $str);

コメントを残す