通过php POST数据创建SVG下载链接

时间:2016-05-31 18:16:38

标签: php svg

此代码可以正常工作。

<?php
$file = "forumsmap.svg";
header('Content-type: image/svg+xml');
header("Content-Disposition: attachment; filename=$file");
echo('<svg width="362" height="256" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><!-- Created with SVG-edit - https://github.com/SVG-Edit/svgedit--><g><title>Layer 1</title><ellipse ry="23" rx="75" id="svg_7" cy="123" cx="191.5" stroke-linecap="null" stroke-linejoin="null" stroke-dasharray="null" stroke-width="null" stroke="#000000" fill="#ffffff"/></g></svg>');
?>

但是当我使用POST数据修改代码时

<?php
$data = $_POST['content'];
$file = "forumsmap.svg";
header('Content-type: image/svg+xml');
header("Content-Disposition: attachment; filename=$file");
echo $data;
?>

我打开SVG文件时收到此错误消息:

此页面包含以下错误:

第1行第2行的

错误:文档末尾的额外内容

下面是第一个错误之前的页面呈现。

Plz告诉我如何解决它。感谢

1 个答案:

答案 0 :(得分:0)

仔细查看$data变量。它可能在末尾包含一个换行符,对于您指定的内容类型无效。

<?php
$data = $_POST['content'];
$file = "forumsmap.svg";
header('Content-type: image/svg+xml');
header("Content-Disposition: attachment; filename=$file");
echo $data;
print_r($data);

这应该可以让你更好地了解发生了什么。

服务器错误或其他修改内容的组件。

最终,您所描述的问题有很多种可能的原因,包括将HTML内容转储到$_POST['content']变量的服务器错误,以及未正确编码{{1 }}