如何在laravel控制器中显示的方法中接受或拒绝输入图像?

时间:2019-06-26 11:55:19

标签: php laravel

我需要在laravel中的方法展示中接受或拒绝某些文件(如图像)

我尝试使用辅助功能request() 但我不能这样做

如果有人有更好的主意 请告诉我 谢谢

$photos = [
            'image_national_code',
            'identify_certificate',
            'image_bill',
            'image_selfie_national_code',
        ];
        foreach ($photos as $photo) {
            if (request($photo))
            {
                if ('accept_'. $photo == false) {
                    if ( file_exists( public_path($photo) ) )
                    unlink( public_path($photo) );
                }
            }else {
                $photo = $photo;
            }
        }

1 个答案:

答案 0 :(得分:0)

尝试

request()->file($photo) 

代替

request($photo)