我从丢失图像的错误日志中收到错误。出现缺失的原因是因为在图像文件扩展后有一个像这样的空白
上传/图像/拇指/ natasha.jpg%20
此404错误不会一直发生,有时会发生。
我已经在Codeigniter php框架上构建了这个项目。
如何删除尾随空格?
答案 0 :(得分:2)
首先尝试修剪和解码
$image = trim(urldecode($image));
答案 1 :(得分:0)
您需要使用trim()函数。 (http://au1.php.net/manual/en/function.trim.php)
e.g。
$image = " this/is/the/path/to/myimage.jpg ";
// Note the spaces around the string
$image = trim($image);
// $image now equals "thisis/the/path/to/myimage.jpg"
// Note: no spaces