我无法使用字符C:\fakepath\one.xls
拆分字符串\
。它显示错误。
我的代码是:
$file=C:\fakepath\one.xls;
$file1=explode("\",$file);
有人能帮助我吗?
答案 0 :(得分:4)
这应该适合你:
$file = 'C:\fakepath\one.xls';
$file = explode("\\",$file);
print_r($file);
输出:
Array ( [0] => C: [1] => fakepath [2] => one.xls )
答案 1 :(得分:1)
您需要在引号中包含字符串,并且需要转义反斜杠:
$file='C:\\fakepath\\one.xls';
$file1=explode("\\",$file);