当文件路径不在公共文件夹laravel 4.2中时,使用php filesize

时间:2016-06-09 00:46:05

标签: php laravel laravel-4

嗨我有一个功能,它把文件放在app/storage/uploads内部我需要获取文件大小并将其放入数据库以进行记录目的这里是我的代码到目前为止获取文件大小

            $tinfo      = pathinfo($thepath);
            $text       = $tinfo['extension'];
            $tfln       = $tinfo['filename'];
            $tbname         = $tinfo['basename'];

            $size = filesize($thepath);
            dd($thepath);
<{1>} $tinfo $thepath包含转储时文件名的路径是值string(54) "C:\xampp\htdocs\dummy\app\storage/uploads/jobdesc.docx"但是当我执行上面的代码时我得到一个错误说 enter image description here

任何想法我做错了什么?或者如何改进我的代码?非常感谢!

0 个答案:

没有答案