#このチュートリアルの動作環境: Windows7 システム、PHP7.1 バージョン、DELL G3 コンピューターPHP で str_ireplace() 関数と str_replace() 関数を使用すると、スペースを「-」文字に置き換えることができます。これら 2 つの関数は、新しい文字列を使用して、元の文字列で指定された特定の文字列を置き換えることができ、その後、置換値を含む文字列または配列。
php replace "-"
PHP では、str_ireplace() と str_replace を使用して、元の文字列で指定された特定の文字列を新しい文字列に置き換えることができます。str_replace は大文字と小文字を区別します。 str_ireplace() 大文字と小文字は区別されず、構文は似ています。str_ireplace() 関数
str_ireplace() の構文は次のとおりです:str_ireplace(find,replace,string,count)
<?php $str = 'hello world!'; $search = ' '; $replace = '-'; echo str_ireplace($search, $replace, $str); ?>
hello-world!
PHP ビデオ チュートリアル"]
substr_replace () 関数
substr_replace() 関数の構文は次のとおりです。substr_replace(string,replacement,start,length)
<?php $str = 'hello world!'; $replace = '-'; echo substr_replace($str, $replace, 5,1); ?>
hello-world!
プログラミング ビデオをご覧ください。 !
以上がPHPでスペースを「-」に置き換える方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。