php laravel中的is_file函数返回false

时间:2018-02-12 02:37:24

标签: php laravel file filesystems package

我从packagist下载了一个带有作曲家的软件包到我的laravel项目中,当我提供视频文件时,该软件包只是为了获取电影字幕,但每次上传电影文件时它都会保持验证,我不知道为什么,这是php / laravel代码

public function store(Request $request)
{


   $file = $request->movie;

   // dd($request);
    // $file = 'E:/Media/Jack reacher.mp4';

    if (empty($file)) {
        echo 'error! you must supply a file';

        return 1;
    }
    if (!is_file($file)) {
        echo 'error! file ' . $file . ' does not exist';

        return 2;
    }

    $config = Yaml::parse(file_get_contents(__DIR__ . '/config/configuration.yml.dist'));

    if (empty($config)) {
        echo 'error! config file does not exist';

        return 3;
    }

    $manager   = new SubtitlesManager($config['username'], $config['password'], $config['language']);
    $subtitles = $manager->get($file);

    if (!empty($subtitles) && !empty($subtitles[0])) {
        $fileGenerator = new FileGenerator();
        $fileGenerator->downloadSubtitle($subtitles[0], $file);
    } else {
        echo 'error! impossible to find the subtitle';
    }

}

它总是返回错误说

  

错误!文件jackreacher.mp4不存在2

此特定条件不断返回false

if (!is_file($file)) {
    echo 'error! file ' . $file . ' does not exist';

    return 2;
}

1 个答案:

答案 0 :(得分:0)

将此属性添加到表单。

使用具有文件上载控件的表单时需要此值

enctype="multipart/form-data"