創(chuàng)新互聯(lián)從2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目成都網(wǎng)站建設(shè)、網(wǎng)站建設(shè)網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元敘州做網(wǎng)站,已為上家服務(wù),為敘州各地企業(yè)和個人服務(wù),聯(lián)系電話:028-86922220
header("content-type:text/html;charset=utf-8");
//文件路徑
$file_path="text.txt";
//**************第一種讀取方式*****************************
//判斷是否有這個文件
/*if(file_exists($file_path)){
if($fp=fopen($file_path,"a+")){
//讀取文件
$conn=fread($fp,filesize($file_path));
//替換字符串
$conn=str_replace("\r\n","
",$conn);
echo $conn."
";
}else{
echo "文件打不開";
}
}else{
echo "沒有這個文件";
}
fclose($fp);
*/
//*******************第二種讀取方式**********************************
//$conn=file_get_contents($file_path);
//$conn=str_replace("\r\n","
",file_get_contents($file_path));
//echo $conn;
//fclose($fp);
//******************第三種讀取方式,循環(huán)讀取******************************
//判斷文件是否存在
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("\r\n","
",$str);
echo $str;
fclose($fp);
?>
****************************************************************************************
//讀取INI配置文件的函數(shù)
$arr=parse_ini_file("config.ini");//返回的是數(shù)組
echo $arr['host']."
";
echo $arr['username']."
";
echo $arr['password']."
";
?>