字符串连接 - preg_match()需要字符串,数组给定

时间:2014-09-30 18:33:18

标签: php laravel laravel-4 string-concatenation

public function getDownload($name){
    $file = storage_path().'/cv/'.$name; //error here
    $headers = array(
        'Content-Description'       => 'File Transfer',
        'Content-Type'              => 'application/pdf',
    );
    return Response::download($file, $headers);
}

我只想在一个变量中连接所有内容。所有参数都是字符串。 下面是两个变量storage_path()和$ name的一个var_dump()。

enter image description here

1 个答案:

答案 0 :(得分:0)

如果您要查看请求工厂的下载方法,您会发现缺少参数。

public function download($file, $name = null, array $headers = array(), $disposition = 'attachment');