2011-05-31 51 views

回答

0

This answer表明,IIF不支持任何更多,但有可供读取/写入库类似的格式。

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); 
相关问题