是否可以使用iif格式的PHP导出数据?

时间:2011-05-31 12:58:37

标签: php

是否可以使用php以iif格式导出数据?比如我们用csv或excel格式导出数据?

由于

2 个答案:

答案 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,但有可用于读/写类似格式的库。