2011-05-31 70 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); 
相關問題