PHP fopen() 函數(shù)
PHP fopen() 函數(shù)

定義和用法
fopen() 函數(shù)打開(kāi)一個(gè)文件或 URL。
如果 fopen() 失敗,它將返回 FALSE 并附帶錯(cuò)誤信息。您可以通過(guò)在函數(shù)名前面添加一個(gè) '@' 來(lái)隱藏錯(cuò)誤輸出。
語(yǔ)法
fopen(filename,mode,include_path,context)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要打開(kāi)的文件或 URL。 |
mode | 必需。規(guī)定您請(qǐng)求到該文件/流的訪問(wèn)類型。 可能的值:
|
include_path | 可選。如果您還想在 include_path(在 php.ini 中)中搜索文件的話,請(qǐng)?jiān)O(shè)置該參數(shù)為 '1'。 |
context | 可選。規(guī)定文件句柄的環(huán)境。context 是一套可以修改流的行為的選項(xiàng)。 |
提示和注釋
注釋:當(dāng)書(shū)寫一個(gè)文本文件時(shí),請(qǐng)確保您使用了正確的行結(jié)束符!在 Unix 系統(tǒng)中,行結(jié)束符為 \n;在 Windows 系統(tǒng)中,行結(jié)束符為 \r\n;在 Macintosh 系統(tǒng)中,行結(jié)束符為 \r。Windows 系統(tǒng)中提供了一個(gè)文本轉(zhuǎn)換標(biāo)記 "t" ,可以透明地將 \n 轉(zhuǎn)換為 \r\n。您還可以使用 "b" 來(lái)強(qiáng)制使用二進(jìn)制模式,這樣就不會(huì)轉(zhuǎn)換數(shù)據(jù)。為了使用這些標(biāo)記,請(qǐng)使用 "b" 或者 "t" 來(lái)作為 mode 參數(shù)的最后一個(gè)字符。
實(shí)例
<?php
$file = fopen("test.txt","r");
$file = fopen("/home/test/test.txt","r");
$file = fopen("/home/test/test.gif","wb");
$file = fopen("http://www.example.com/","r");
$file = fopen("ftp://user:password@example.com/test.txt","w");
?>
$file = fopen("test.txt","r");
$file = fopen("/home/test/test.txt","r");
$file = fopen("/home/test/test.gif","wb");
$file = fopen("http://www.example.com/","r");
$file = fopen("ftp://user:password@example.com/test.txt","w");
?>

相關(guān)文章
- PHP 類型比較
- PHP If Else 語(yǔ)句
- PHP Switch 語(yǔ)句
- PHP $_GET 變量
- PHP 多維數(shù)組
- PHP 文件上傳
- PHP Session
- PHP 異常處理
- PHP array_chunk() 函數(shù)
- PHP array_column() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP next() 函數(shù)
- PHP shuffle() 函數(shù)