簡單的參考fopen函數
fopen() 函數打開文件或者 URL。
如果打開失敗,本函數返回 FALSE。
語法
fopen(filename,mode,include_path,context)
實例1
創建一個文件的例子:
代碼如下 復制代碼<?php
if(!file_exists("test.txt")){ //如果文件不存在(默認為當前目錄下)
$fh = fopen("test.txt","w");
fclose($fh); //關閉文件
}
?>
實例 2
利用php的讀寫文本文檔的功能來實現修改和編輯robots文件
代碼如下 復制代碼<?php
function get_txt($robots_file)
//定義函數,內容用{}括起來
{
if(file_exists($robots_file))
//如果文件存在,讀取其中的內容
{
$fp=@fopen($robots_file,"r");
//r是read的縮寫,代表讀取的意思,以只讀方式打開文件
if ($fp) {
while (!feof($fp)) { //如果沒有到文件尾部
$robots_txt = fgets($fp, 4096); //逐行讀取
$robots_all = $robots_all.$robots_txt; //將數據保存到$robots_all裡面
}
return($robots_all); //返回所有內容
fclose($fp); //關閉文件
}
}
}
function put_txt($robots_txt)
{
$fp=fopen("robots.txt","w");
//w是write的縮寫,代表寫入的意思,以寫入的方式打開文件
fputs($fp,$robots_txt);
//輸出文本到文件
fclose($fp);
}
?>
<?php
$edit=$_GET["edit"];
$txt=$_POST["txt"];
$get_txt=get_txt("robots.txt");
//調用剛才定義的函數打開robots文件。
if($edit=="write")
{
put_txt($txt);
echo "成功保存 <a href=robots-editer.php>返回</a>";
}
else
{
echo "成功讀取<a href=robots.txt target=_blank>robots.txt</a> <a href=writer.php>返回</a>";
}
?>
<?php
if($edit=="")
{
?>
<form name="form1" action="?edit=write" method="post">
<textarea name="txt" cols="160" rows="30"><?php echo $get_txt; ?></textarea>
<br />
<input name="submit" value="保存" type="submit" />
</form>
<?php
}
?>
通過PHP讀取文本文檔counter.txt裡的數據,並+1保存到文本文檔中。
新建counter.php文檔,輸入如下代碼,跟ASP不同的是PHP裡的單行注釋是用//或者#,多行注釋用/* */來實現:
代碼如下 復制代碼 <?php
同樣在需要調用的PHP文檔中插入這個文件:
<?php include("counter.php");?>