1. 程式人生 > >php 讀取文字檔案到行陣列

php 讀取文字檔案到行陣列

        $file_path = "f:\identification.txt";
        if(file_exists($file_path)){
            $str = file_get_contents($file_path);//將整個檔案內容讀入到一個字串中
            $strs = explode("\r\n", $str);
        }
        return $strs