Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の変数でスペースをアンダースコア「_」に置き換えようとしています
$e_type = 'Hello World TEST';
誰でも私を助けてくれませんか
あなたがしたいstr_replace:
str_replace
$e_type = str_replace(' ', '_', $e_type);
これを確認してください。あなたはそこにいくつかの良い例を持っています...