php文件上传时文件名怎么转义

WBOY
Release: 2016-06-13 12:29:45
Original
1387 people have browsed it

php文件上传时文件名如何转义?
php文件上传时文件名包含%和英文单引号和英文逗号会上传失败,怎么进行转义?急!

<br />
//循环排除替换文件名中的非法字符<br />
$errorchar=array ("-"," ","~","!","@","#","$","%","^","&","(",")","+",","," (",")","?","!","《","》",":",";","——");<br />
foreach($errorchar as $char)<br />
{<br />
    if(strpos($upload_file,$char)){<br />
        $upload_file=str_replace($char,"_",$upload_file);<br />
    }<br />
}
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template