从包含空格的文件夹中的文件获取文件内容

时间:2016-05-13 17:26:19

标签: php file

我有一个我想用PHP阅读的图像文件:

$imagefile = "/Billing/Billing Client Name/WebFolder/image.png";
echo file_exists($imagefile); //Returns false;

$imagefile = "/Billing/Billing+Client+Name/WebFolder/image.png";
echo file_exists($imagefile); //Returns False;

$imagefile = "/Billing/Billing%20Client%20Name/WebFolder/image.png";
echo file_exists($imagefile); //Returns False;

$imagefile = urlencode("/Billing/Billing Client Name")."/WebFolder/image.png";
echo file_exists($imagefile); //Returns False;

//After Chaging the folder name
$imagefile = "/Billing/BillingClientName/WebFolder/image.png";
echo file_exists($imagefile); //Returns True;

问题似乎是文件夹名称中有空格。在foldernames中是否允许使用空格,如果是这样,我如何操作文件夹名称以便php可以正确处理文件?

谢谢。

0 个答案:

没有答案