php新建檔名稱亂碼的解決辦法:1、使用「iconv」或「mb_convert_encoding」函數轉換字元的編碼;2、通過「function convertEncoding($string){...}」方法實現根據系統設定轉換編碼即可。
php入門到就業線上直播課:進入學習
Apipost = Postman + Swagger + Mock + Jmeter 超好用的API偵錯工具:
本教學操作環境:windows7系統、PHP8.1版、Dell G3電腦。
php 新建檔名稱亂碼怎麼辦?
在windows下,PHP呼叫mkdir()、file_put_contents()、fopen()函數建立帶有中文的目錄或檔名時,出現亂碼。
原因
經過查閱資料,這跟系統字元集有關係。
windows(簡體中文),預設字元集是:gbk
windows(繁體中文),預設字元集是:big5
linux,預設字元集是:utf-8
解決
使用iconv或mb_convert_encoding函數轉換字元的編碼。
//將字串 str 從 in_charset 轉換編碼到 out_charset。
string iconv ( string $in_charset , string $out_charset , string $str )
//將 string 型別 str 的字元編碼從可選的 from_encoding 轉換到 to_encoding。
string mb_convert_encoding ( string $str , string $to_encoding [, mixed $from_encoding = mb_internal_encoding() ] )
登入後複製
根據系統設定轉換編碼,方法如下:
<?php
/**
* 轉換字元編碼
* @param $string
* @return string
*/
function convertEncoding($string){
//根據系統進行設定
$encode = stristr(PHP_OS, 'WIN') ? 'GBK' : 'UTF-8';
$string = iconv('UTF-8', $encode, $string);
//$string = mb_convert_encoding($string, $encode, 'UTF-8');
return $string;
}
登入後複製
亂碼範例
<?php
#範例1
$dir = __DIR__ . '/中英文目錄Test1';
mkdir($dir);
//目錄名:涓嫳鏂囩洰褰昑est1
#範例2
$fileName = __DIR__ . '/中英檔名Test2.txt';
file_put_contents($fileName, '檔案內容Test2');
//檔名:涓嫳鏂囨。鍚峊est2.txt
//檔案內容:檔案內容Test2
#範例3
$fileName = __DIR__ . '/中英檔名Test3.txt';
$fp = fopen($fileName, 'w');
fwrite($fp, '檔案內容Test3');
fclose($fp);
//檔名:涓嫳鏂囨。鍚峊est3.txt
//檔案內容:檔案內容Test3
?>
登入後複製
解決範例
<?php
#範例1
$dir = __DIR__ . '/中英文目錄Test1';
$dir = convertEncoding($dir);
mkdir($dir);
//目錄名:中英文目錄Test1
#範例2
$fileName = __DIR__ . '/中英檔名Test2.txt';
$fileName = convertEncoding($fileName);
file_put_contents($fileName, '檔案內容Test2');
//檔名:中英檔名Test2.txt
//檔案內容:檔案內容Test2
#範例3
$fileName = __DIR__ . '/中英檔名Test3.txt';
$fileName = convertEncoding($fileName);
$fp = fopen($fileName, 'w');
fwrite($fp, '檔案內容Test3');
fclose($fp);
//檔名:中英檔名Test3.txt
//檔案內容:檔案內容Test3
/**
* 轉換字元編碼
* @param $string
* @return string
*/
function convertEncoding($string){
//根據系統進行設定
$encode = stristr(PHP_OS, 'WIN') ? 'GBK' : 'UTF-8';
$string = iconv('UTF-8', $encode, $string);
//$string = mb_convert_encoding($string, $encode, 'UTF-8');
return $string;
}
登入後複製
推薦學習:《》
以上就是php 新建檔名稱亂碼怎麼辦的詳細內容,更多請關注TW511.COM其它相關文章!