English / Arabic       تلفن تهران : 66502340 و 66501375 | فکس : 66501326 | آدرس : تهران , ستارخان , خیابان شادمان , نبش کوچه گل افشان , پلاک 425 , واحد 2

خروجی فارسی csv توسط php

رتبه بندی این آیتم
(0 نظر)

$entries = $this->user->_phoneBook->getEntries();
$handle = fopen( 'php://temp', 'r+' );

foreach( $entries as $entry ){
fputcsv( $handle , array( $entry->name, $entry->number ), ';' );
}

rewind($handle);
$content = stream_get_contents($handle);
fclose($handle);
header('Content-type: text/comma-separated-values');
header('Content-Disposition: attachment; filename="phonebook.csv"');

echo("\xEF\xBB\xBF".$content);
exit();


ارسال نظر

لطفا فیلدهای اجباری را درج نمایید