yii? ??? ?? CSV ??? ?????.
/** * 導(dǎo)出csv * @author yhdsir * @param array $parameter header 表頭 * @param array $parameter data 數(shù)據(jù) * @param string $filename 導(dǎo)出名字 */ public function export($parameter, $filename = '') { if (empty($filename)) { $filename = date('Y-m-d_H-i-s'); } $filename = str_replace(array('"', "'", ' ', ','), '_', $filename) . '.csv'; if (is_array($parameter)) { header('Content-Type: application/vnd.ms-excel'); header('Cache-Control: max-age=0'); header("Content-Disposition: attachment;filename={$filename}"); $fp = fopen('php://output', 'w'); //fwrite($fp, chr(0xEF) . chr(0xBB) . chr(0xBF)); // 添加 BOM if (!empty($parameter['header']) && is_array($parameter['header'])) { foreach ($parameter['header'] as $i => $v) { // CSV的Excel支持GBK編碼,一定要轉(zhuǎn)換,否則亂碼 // $head[$i] = iconv('utf-8', 'gbk', $v); $parameter['header'][$i] = iconv('utf-8', 'gb2312//TRANSLIT//IGNORE', $v); } // 將數(shù)據(jù)通過fputcsv寫到文件句柄 fputcsv($fp, $parameter['header']); } if (isset($parameter['data'])) { foreach ($parameter['data'] as $row) { foreach ($row as $i => $v) { $row[$i] = iconv('utf-8', 'gb2312//TRANSLIT//IGNORE', $v); } fputcsv($fp, $row); } } fclose($fp); return true; } throw new \yii\web\HttpException(500, "Not a valid parameter!"); }
iconv - ???? ?? ?? ???? ?? ?????.
??
iconv ( string $in_charset , string $out_charset , string $str ) : string
??? str? in_charset?? out_charset?? ?????.
????
in_charset: ?? ?? ?????.
out_charset: ?? ?? ?????.
str: ??? ??????.
?? ?: ??? ???? ????? ?? ? FALSE? ?????.
?? ??: yii ????
? ??? yii2?? ??? csv ??? ??? ?? ??? ?? ????? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

Linux ??? ?? ??? ??? ?? ?? ? ???? ??? ? ?? ???? ?????. ??? ?? ??? ??, ??? ???? ?? ?? ???? ??, ??? ????? ?? ?? ??? ?? ??? ?? ? ????. ? ????? ? ?? ???? ?? ??? ???? ?? ?? ??? ?????. 1. ?? ??? ??? ??????. ?? ???? ??? ????? file ??? ??????. ??? "charset"? ?? ??.

??: ??? ???? Oracle? ??? ? ??? ??? ??? ???? ?? ?? ? ?? ??. ??? ???? Oracle ??????? ??? ? ??? ?? ?? ???? ???? ? ??? ?? ??? ?? ??? ??? ??? ?? ????. ????. . ? ??? ???? ?? ??? ??? ???? ???? ??? ? ??? ? ?? ??? ?? ? ????. ??? ? ?? ?? ??? ???? ?? ????. 1. ?????? ?? ?? ??? ?????. Oracle ???????? ?? ?? ??? ??? ????.

Linux ????? ??? ??? ??? ???? ?? Linux ???? ??? ? ???? ???? ???? ??? ???? ??? ? ??? ?? ?? ??? ??? ???? ???. ? ????? ???? Linux ??? ?? ??? ???? ??? ???? ?? ?? ??? ?????. ?? 1: ????? ??? ?????. ????? ??? ??? ?? ????? ???? ??? ?? ??? ???? ?? ?????. ???? ?? ??? ??? ???? ? ??? ??? ? ????. #?? ??? ??

PHP?? ??? ??? ?? ??? ???? ?? ? ?? ???? ?? ???? ???? ??? ??? ? ??? ?? ??? ??? ??? ?? ?????. PHP??? ??? ?? ??? ???? ???? ??? ????? ??? ?????. ? ????? ??? ??? ?? ??? ???? ? ?? ??? ???? ??? ? ??? ? ? ???? ? ??? ?? ?? ?? ??? ?????. ?? ??: ???? ??? ???? ? ??? ?? ??? ???? ???? ??? ????. ????? ????? ??? ?????.

Oracle ???????? ??? ?? ??? ???? ?? ?? ? ?? ?? ?????? ?? ?????? ?? ???? ???? Oracle ???????? ??? ?? ?? ??? ??? ? ????. ??????? ???? ???? ???? ???? ???? ??? ?? ?? ??? ???? ?? ??? ?????. ? ????? ?? ?? ??? ???? ??? ? ??? ? ? ???? ??? ? ??? Oracle ???????? ??? ?? ??? ???? ?? ??? ??? ?????. 1. ??? ??? ??? ?? ??? ???? ?? ?????: ?????? ?? ? ?? ????

Win11? Microsoft? ?? ?? ????? ?? ???? ??? ? ??? ??? ???? ??? ??? ? ??? ?? ???? ???? ??? ??? ????. ? ????? ? ??? ???? ? ?? ??? ?????. ?? 1: 1. [Win+S] ? ??? ????, ?? Windows ???? ?? ??? [???]? ??? ?, ?? ???? ?? ??? ?? ?? [?? ???]? ?????. 2. ??? ??? [??] ?? ??? ??? ?? [?? ? ??-??]? ?????. ??] ?? ??? ? [??] ??? ?? ??]? ?????. 4. [?? ??] ?? ??: ???? ??

PHP? ????? ???? ?? ? ???? ???, ?? ? ???? ???? ? ?? ?????. ? ?? ???? ??? ???? ?? ?? ????? ?? ??? ???? ??? ?? ?????. ? ????? PHP ? ???? ??? ??? ???? ???? ??? ?? ??? ??? ???? ???? ?? ??? ?????. 1. ?? ??: PHP ?? ??? ??? ??: PHP ??? ???? ?? ? ??? ???? ???. PHP ??? UTF-8 ????? ???? ?? ? ??? ?? ???? ???? ??

PHP? ???? ??? ?? ???? ??? ????? ???, ??? ?????? ?? ??? ??? ??? MySQL? ?? ??????? ?? ???? ? ?? ?????. ??? ?? ???? ????? ?? ???????? ??? ??? ??? ? ??? ?? ?????. ? ????? ??? ??? ???? ??, ??? ? ?? ?? ??? ???? ???????? ??? ??? ??? ???? ?? PHP? ??? ??? ?????. ??? ???? ???? ??? ??? ?????? ?? ?? ?? ?????. ??????? ??? ? utf8 ?? u? ?? ??? ?? ??? ???? ???.
