0

我的代码有点奇怪,我不知道我的代码会出现什么问题。这是我的代码。

$project_name = $_POST['project_name'];//example the retrieved data is Testing Project
$quote_id = $_POST['quote_id'];//example the retrieved data is 34425
$date = date("M/d/y");
$as_agent = $_POST['as_agent'];//example the retrieved data is John Doe

$name_for_project = $project_name.' '.$quote_id.' '.$date.' '.$as_agent;


header("Content-Type: application/vnd.ms-excel");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename='".$name_for_project.".xls'");
ob_start();

//The rest of the code is Workbook
echo"
    <?xml version='1.0'?>
    <?mso-application progid='Excel.Sheet'?>
    <Workbook
xmlns='urn:schemas-microsoft-com:office:spreadsheet'
xmlns:o='urn:schemas-microsoft-com:office:office'
xmlns:x='urn:schemas-microsoft-com:office:excel'
xmlns:ss='urn:schemas-microsoft-com:office:spreadsheet'
xmlns:html='http://www.w3.org/TR/REC-html40'>
<DocumentProperties xmlns='urn:schemas-microsoft-com:office:office'>
    <Version>11.8036</Version>
</DocumentProperties>
<ExcelWorkbook xmlns='urn:schemas-microsoft-com:office:excel'>
    <WindowHeight>6795</WindowHeight>
    <WindowWidth>8460</WindowWidth>
    <WindowTopX>120</WindowTopX>
    <WindowTopY>15</WindowTopY>
    <ProtectStructure>False</ProtectStructure>
    <ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>";

    //so on and so fort...

当此代码运行时,它仅捕获 $project_name 值..请帮助我...谢谢..

4

3 回答 3

1

以下行将header("...提示将带有撇号的文件保存到文件的开头和结尾。

示例'project_quote_id_2013-08-31_as_agent.xls'

header("content-disposition: attachment;filename='".$name_for_project.".xls'");

应更改为:

header("content-disposition: attachment;filename=".$name_for_project.".xls");

下面的代码将生成/回显一个名为的可保存文件:(project_quote_id_2013-08-31_as_agent.xls截至今天的测试日期)。

如果,正如 Aiden 在他的回答中所说,您使用斜杠作为$date变量的分隔符,您将遇到问题。

尽量避免使用空格作为分隔符,使用连字符和/或下划线来分隔您的值。

例如,这将保存以提示具有一些虚拟内容的文件。

<?php  

$date = gmdate('Y-m-d', time() - 3600 * $hours);
$project_name = "project";
$quote_id = "quote_id";
$as_agent = "as_agent";
$name_for_project = $project_name.'_'.$quote_id.'_'.$date.'_'.$as_agent;

$file = $name_for_project.".xls";

// start buffering  
ob_start();  
// sample dynamically generated data  
echo '<table border="1"> ';  
echo '<tr><th>Name</th><th>Age</th></tr>';  
for ($i=0; $i<=5; $i++) { echo "<tr><td>Name$i</td><td>".($i+1)."</td></tr>";  
}  
echo '</table>';  
$content = ob_get_contents();  
ob_end_clean();  
header("Expires: 0");  
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");  
header("Cache-Control: no-store, no-cache, must-revalidate");  
header("Cache-Control: post-check=0, pre-check=0", false);  
header("Pragma: no-cache");  
header("Content-type: application/vnd.ms-excel;charset:UTF-8");  
header('Content-length: '.strlen($content));  
header('Content-disposition: attachment; filename='.basename($file));  
// output all contents  
echo $content;  
exit;
?>

将生成一个名为:(project_quote_id_2013-08-31_as_agent.xls截至今天的测试日期)的文件,并将提示用户以该名称保存它。

将需要相应地插入要插入实际内容的其余代码,因为没有其他关于与问题/代码相关的变量或文本的帖子。

于 2013-08-31T02:05:08.983 回答
0

您的任何其他变量是否包含文件名的无效字符?例如,如果您将 $date 声明为 2013 年 8 月 30 日,那么 php 将不会将您的变量连接到无效字符之后。

于 2013-08-31T01:41:36.397 回答
0

空格影响命名文件名。我所做的是将我的代码转换成。

$project_name = $_POST['project_name'];//example the retrieved data is Testing Project    
$quote_id = $_POST['quote_id'];//example the retrieved data is 34425
$date = date("M/d/y");
$as_agent = $_POST['as_agent'];//example the retrieved data is John Doe
$proj_name = str_replace(' ', '', $project_name);
$as_agent = str_replace(' ', '', $as_agent);

$name_for_project = $proj_name."-".$quote_id."-".$date."-".$as_agent; 


header("Content-Type: application/vnd.ms-excel");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("content-disposition: attachment;filename=$name_for_project.xls");

感谢@Fred -ii-

于 2013-08-31T05:24:33.267 回答