gpt4 book ai didi

php - laravel4 CSV 路由帮助

转载 作者:行者123 更新时间:2023-11-30 01:35:21 26 4
gpt4 key购买 nike

我有一个按钮,当我单击该按钮时,数据应以 csv 格式打开

 public function get_textfile() {

$table = Campaign::all();
$file = fopen('file.csv', 'w');
foreach ($table as $row) {
fputcsv($file, $row);
}
fclose($file);


header("Content-type: text/csv");
header("Cache-Control: no-store, no-cache");
header('Content-Disposition: attachment; filename="campaign.csv"');
header("Expires: 0");




// return Redirect::to('');

}

上面的代码在我的 Controller 中......

我的按钮在 View 中(我在路由时遇到问题如何路由?)

<a href= {{ URL::to('?????' ); }} "" class="btn btn-large btn-success">Export CSV file</a>

谁能解释一下这个过程吗?

最佳答案

{{URL::action('YourController@get_txtfile')}}

我相信这应该有效。

关于php - laravel4 CSV 路由帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16974748/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com