Replacing Spaces with Underscores

前端 未结 12 550
北海茫月
北海茫月 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:02

    This is part of my code which makes spaces into underscores for naming my files:

    $file = basename($_FILES['upload']['name']);
    $file = str_replace(' ','_',$file);
    

提交回复
热议问题