是否可以使用php以iif格式导出数据?比如我们用csv或excel格式导出数据?
由于
答案 0 :(得分:0)
是的,您需要构建一个执行此操作的脚本。
请参阅this page for the format you need to output。
基本上你会做类似的事情:
// Open the file for writing...
$fp = fopen("myiiffile.iif", "w");
//Loop through the records writing out the data in the proper format...
fwrite($fp, $inputstring);
//Close the file...
fclose($fp);
答案 1 :(得分:0)
This answer表示不再支持IIF,但有可用于读/写类似格式的库。