我正在尝试使用Laravel生成XML文件。从Controller开始,在其中生成需要在XML文件上使用的数据。我使用刀片模板生成XML文件,但无法保存或自动下载
$xml_datos = [];
$total = 0;
.
.
.
$output = View::make('site.contabilidad.adeudosXML')->with(compact(('xml_datos', 'total'))->render();
$xml = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?> \n <Document xmlns=\"urn:iso:std:iso:20022:tech:xsd:pain.008.001.02\">" .$output;
return $xml;
我需要下载文件,但未显示。我已经尝试过使用“存储和文件系统”类,但是它们似乎都不起作用
答案 0 :(得分:1)
您可以这样创建Response:
public function saveXML()
{
$output = View::make('site.contabilidad.adeudosXML')->with(compact(('xml_datos', 'total'))->render();
$xml = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?> \n <Document xmlns=\"urn:iso:std:iso:20022:tech:xsd:pain.008.001.02\">" .$output;
$response = Response::create($xml, 200);
$response->header('Content-Type', 'text/xml');
$response->header('Cache-Control', 'public');
$response->header('Content-Description', 'File Transfer');
$response->header('Content-Disposition', 'attachment; filename=' . yourFileNameHere . '');
$response->header('Content-Transfer-Encoding', 'binary');
return $response;
}
此外,我强烈建议您使用PHP functions to manipulate XML。