gpt4 book ai didi

php - 从变量加载 excel 文件到 PHP_Excel

转载 作者:可可西里 更新时间:2023-11-01 12:25:56 26 4
gpt4 key购买 nike

我现在有这个

file_put_contents($tmpfile, $attachments[0]['body']);
$objPHPExcel = PHPExcel_IOFactory::load($tmpfile);

我正在阅读的文件是从电子邮件中提取的,因此没有将其写入临时文件我想将它直接从字符串读入 phpexcel(如果这有意义的话)

$objPHPExcel = PHPExcel_IOFactory::load($attachments[0]['body']);

我已经看过 php excel 手册,但看不出如何去做,有什么想法吗?

最佳答案

这可能不是最优雅的解决方案,但我是这样解决的:

public function fromString($data=null)
{
$file = tempnam(sys_get_temp_dir(), 'excel_');
$handle = fopen($file, "w");
fwrite($handle, $data);
$return = \PHPExcel_IOFactory::load($file);
fclose($handle);
unlink($file);
return $return;
}

关于php - 从变量加载 excel 文件到 PHP_Excel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9538626/

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