我有一个我想用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可以正确处理文件?
谢谢。