$filename = "Sara & I.mp3";
if (file_exists($filename)) {
...
}
如果文件名有“ &
” PHP 不返回 truefile_exists
我怎样才能&
在 $filename 中转义“”file_exists
才能正常工作?
已经尝试过urlecode()
, urlrawencode()
, htmlentities()
, 并使用反斜杠 (\&) 转义“&”...不行
附言。这是在运行 RedHat5 的 linux 系统上
提前致谢