Replacing Spaces with Underscores

前端 未结 12 545
北海茫月
北海茫月 2020-11-30 20:14

I have a PHP Script that users will enter a name like: Alex_Newton,

However, some users will use a space rather than an underscore, so my question is:

12条回答
  •  無奈伤痛
    2020-11-30 21:10

    Use str_replace function of PHP.

    Something like:

    $str = str_replace(' ', '_', $str);
    

提交回复
热议问题