php讀取檔案的幾種方式

germo發表於2021-09-09


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);

//******************第三種讀取方式,迴圈讀取******************************

//判斷檔案是否存在

if(file_exists($file_path)){

//判斷檔案是否能開啟

if($fp=fopen($file_path,"a+")){

$buffer=1024;

//邊讀邊判斷是否到了檔案末尾

$str="";

while(!feof($fp)){

$str.=fread($fp,$buffer);

}



}else{

echo "檔案不能開啟";

}

}else{

echo "沒有這個檔案";

}

//替換字元

$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']."
";


?>


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1868/viewspace-2801880/,如需轉載,請註明出處,否則將追究法律責任。

相關文章