php讀取檔案內容的三種方法:
//**************第一種讀取方式*****************************
**如下:
header("content-type:text/html;charset=utf-8");
//告訴php預處理器將內容已utf8的格式傳遞給瀏覽器
//檔案路徑
$file_path="text.txt";
//判斷是否有這個檔案
if(file_exists($file_path))else
}else
fclose($fp);
//*******************第二種讀取方式***************************
**如下:
header("content-type:text/html;charset=utf-8");
//檔案路徑
$file_path="text.txt";
$conn=file_get_contents($file_path);
$conn=str_replace("rn","
",file_get_contents($file_path));
echo $conn;
fclose($fp);
//******************第三種讀取方式,迴圈讀取*****************
**如下:
header("content-type:text/html;charset=utf-8");
//檔案路徑
$file_path="text.txt";
//判斷檔案是否存在
if(file_exists($file_path))
}else
}else
//替換字元
$str=str_replace("rn","
",$str);
echo $str;
fclose($fp);
讀取ini配置檔案的函式:
$arr=parse_ini_file("config.ini");
//返回的是陣列
echo $arr['host']."
";
echo $arr['username']."
";
echo $arr['password']."
";
讀取文字檔案內容
讀取文字檔案內容 param filepathandname 帶有完整絕對路徑的檔名 param encoding 文字檔案開啟的編碼方式 return 返回文字檔案的內容 public string readtxt string filepathandname,string encoding th...
php 逐行讀取文字檔案
在讀取文字時,我們要注意乙個事情,那就是換行符,應為我們在寫文件時會手動換行,這個換行符需不需要儲存就要看自己的需求了。這裡封裝了兩個方法,乙個保留換行,乙個不保留。path為檔案路徑 檔名 1.不保留換行 1 function read path 11 fclose file 12 user ar...
讀取文字檔案
void ctestdlg onreadinfo cfile filewrite1 testwrite1.txt cfile modecreate cfile modewrite cfile filewrite2 testwrite2.txt cfile modecreate cfile modew...