string sanitizer for filename

后端 未结 17 1310
长情又很酷
长情又很酷 2020-11-27 13:23

I\'m looking for a php function that will sanitize a string and make it ready to use for a filename. Anyone know of a handy one?

( I could write one, but I\'m worri

17条回答
  •  难免孤独
    2020-11-27 14:06

    $fname = str_replace('/','',$fname);

    Since users might use the slash to separate two words it would be better to replace with a dash instead of NULL

提交回复
热议问题