无法读取另一应用程序(DDE功能)计算的实时数据文件。

huangapple go评论132阅读模式
英文:

Not able to read file with live data which is a calculation from another application (DDE function)

问题

抱歉,你的请求已被确认。以下是翻译好的部分:

I'm trying to read an XLS file. Data of which is being updated by an external application through a formula (DDE function). So, the file is getting updated every second. When I try to read the file, I'm getting the below error.

Error:

ErrorException: Uninitialized string offset 0 in file C:\xampp\htdocs\gold-rate\gold-rate-web-test\vendor\phpoffice\phpspreadsheet\src\PhpSpreadsheet\Reader\Xls.php on line 7803

Code:

$inputFileType = 'Xls';
$inputFileName = 'sources/win.xls';
$reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inputFileType);
$spreadsheet = $reader->load($inputFileName);

How can I read the file?
Thanks in advance!

英文:

I'm trying to read an XLS file. Data of which is being updated by an external application through a formula (DDE function). So, the file is getting updated every second. When I try to read the file, I'm getting the below error.

Error:

ErrorException: Uninitialized string offset 0 in file C:\xampp\htdocs\gold-rate\gold-rate-web-test\vendor\phpoffice\phpspreadsheet\src\PhpSpreadsheet\Reader\Xls.php on line 7803

Code:

$inputFileType = 'Xls';
$inputFileName = 'sources/win.xls';
$reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inputFileType);
$spreadsheet = $reader->load($inputFileName);

How can I read the file?
Thanks in advance!

答案1

得分: 1

我已经通过这篇帖子的帮助解决了这个问题:

https://marcelwijayacc.wordpress.com/2011/09/22/obtaining-live-data-feed-from-excel-or-any-windows-object-using-php/

英文:

I've fixed the issue with the help of this post,

https://marcelwijayacc.wordpress.com/2011/09/22/obtaining-live-data-feed-from-excel-or-any-windows-object-using-php/

huangapple
  • 本文由 发表于 2023年3月1日 16:46:49
  • 转载请务必保留本文链接:https://go.coder-hub.com/75601367.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定