0
如何以qif格式導出我的數據。我沒有任何想法,我怎麼能? 請幫我找出方法。 在先進的感謝...如何使用codeigniter以QIF格式導出數據?
如何以qif格式導出我的數據。我沒有任何想法,我怎麼能? 請幫我找出方法。 在先進的感謝...如何使用codeigniter以QIF格式導出數據?
試試這個 //我不知道什麼是QIF文本格式,但這個你可以寫一個文件
write_file.php
public function write_qif($info){
$this->load->helper(array('file','download'));
$_info = $this->some_model->get_info($info);//return object
$qif_text = '
!Type:'.$_info->type.'//BANK
D'.$_info->date1.'//03/03/10
T-379.00
P'.$_info->city.'//CITY OF
^
D'.$_info->date2.'//03/04/10
T-20.28
P'.$_info->maket_place.'//YOUR LOCAL SUPERMARKET
^
D'.$_info->date3.'//03/03/10
T-421.35
P'.$_info->product.'//...WATER UTILITY
';
if (! write_file('./path/to/file.qif', $_info)){
echo 'Unable to write the file';
}
else{
$data = file_get_contents(.'/path/to/file.qif');
$name = 'myqiffile.qif';
force_download($name, $data);
echo 'File written!';
}
}
謝謝你@elddenmedio,你的ans對我有幫助... – Angel