不能使用php分割字符串

时间:2014-12-05 11:56:26

标签: php

我无法使用字符C:\fakepath\one.xls拆分字符串\。它显示错误。

我的代码是:

$file=C:\fakepath\one.xls;
$file1=explode("\",$file);

有人能帮助我吗?

2 个答案:

答案 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);