1. 程式人生 > >php 讀取txt檔案中的內容,轉換成陣列

php 讀取txt檔案中的內容,轉換成陣列

    $str = file_get_contents('weixinname.txt');//將整個檔案內容讀入到一個字串中
    $str_encoding = mb_convert_encoding($str, 'UTF-8', 'UTF-8,GBK,GB2312,BIG5');//轉換字符集(編碼)
    $arr = explode("\r\n", $str_encoding);//轉換成陣列

    //去除值中的空格
    foreach ($arr as &$row) {
        $row = trim($row);
    }

    unset($row);
    //得到後的陣列
var_dump($arr);