gpt4 book ai didi

php - 保存 Excel 导出到文件位置 PHP

转载 作者:行者123 更新时间:2023-11-29 20:53:01 25 4
gpt4 key购买 nike

我正在尝试将下面的代码保存到服务器上的文件位置,任何人都可以帮忙。目前它只是通过浏览器下载,但我想运行 cron 并保存在文件位置。

<?php
// Connection

$conn=mysql_connect('**','**','**');
$db=mysql_select_db('SHP',$conn);

$filename = "stockbook.xls"; // File Name
// Download file
header("Content-Disposition: attachment; filename=\"$filename\"");
header("Content-Type: application/vnd.ms-excel");
file_put_contents("http://kempfenterprises.com/dash/reports/stockbook.xls");
$user_query = mysql_query("select * from troy.stockbook ");
// Write data to file
$flag = false;
while ($row = mysql_fetch_assoc($user_query)) {
if (!$flag) {
// display field/column names as first row
echo implode("\t", array_keys($row)) . "\r\n";
$flag = true;
}
echo implode("\t", array_values($row)) . "\r\n";
}
?>

提前致谢

最佳答案

您可以使用file_put_contents在服务器中写入文件。

http://php.net/manual/en/function.file-put-contents.php

关于php - 保存 Excel 导出到文件位置 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37867856/

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