php 讀取TXT文字生成 想要的資料格式

2021-07-26 07:22:25 字數 2456 閱讀 3815

控制器
public functionindex()

}else}}

}}

<?phpheader

("content-type: text/html; charset=gb2312");

$handle

= @fopen

("111.txt",

"r");

functionzhongwen(

$text

)-\x]+/u',

$str

, $matches

);//把匹配到的陣列連線為字串

$str

= implode

('',

$matches[0

]);//把utf-8編碼轉化為 gb2312編碼

$text2

= mb_convert_encoding

($str

,'gb2312',

'utf-8');

return$text2;}

if(

$handle

) */}}

fclose

($handle

);

// 關閉

}functioncity(

$city

,$handle

)//return $c;

}fclose

($handle

);

// 關閉}}

?>

<?

error_reporting(e_all ^ e_deprecated);

header("content-type: text/html; charset=gb2312");

$handle = @fopen("111.txt", "r");

$conn = @ mysql_connect("localhost", "root", "root") or die("資料庫鏈結錯誤");

mysql_select_db("test", $conn);

mysql_query("set names 'gbk'"); //使用gbk中文編碼;

function zhongwen($text)-\x]+/u', $str, $matches);

//把匹配到的陣列連線為字串

$str = implode('', $matches[0]);

//把utf-8編碼轉化為 gb2312編碼

$text2 = mb_convert_encoding($str, 'gb2312', 'utf-8');

return $text2;

}if ($handle) }}

}fclose($handle);  // 關閉

}?>

插入資料

">

<?

error_reporting(e_all ^ e_deprecated);

header("content-type: text/html; charset=gb2312");

$handle = @fopen("111.txt", "r");

$conn = @ mysql_connect("localhost", "root", "root") or die("資料庫鏈結錯誤");

mysql_select_db("test", $conn);

mysql_query("set names 'gbk'"); //使用gbk中文編碼;

function zhongwen($text)-\x]+/u', $str, $matches);

//把匹配到的陣列連線為字串

$str = implode('', $matches[0]);

//把utf-8編碼轉化為 gb2312編碼

$text2 = mb_convert_encoding($str, 'gb2312', 'utf-8');

return $text2;

}if ($handle)

fclose($handle);  // 關閉

}?>

PHP生成TXT檔案 php讀取txt檔案內容

filename filename.txt header content disposition attachment filename filename 輸出內容 直接用echo輸出,r n 用以換行。第一步 處理中文檔名 filename 中文檔名.txt encoded filename ur...

vb 讀取txt文字的行數方法比較

將vb中,讀取文字檔案行數的方法進行了一下比較,發現方法二速度最快,程式最簡練 dim sfiles as string dim str1 as string dim n,f lines as long n timer if 1 0 then 方法1 試驗檔案花時 9.25 dim temp as ...

Adnroid 讀取raw的txt等文字檔案

有時候我我們想要把文字內容儲存在乙個txt檔案裡,需要的時候再讀取 1.先在專案的res資料夾下新建乙個raw資料夾,把 文字檔案複製到raw資料夾 2.讀取raw檔案的方法 public static string readfilefromraw activity context,int rawn...