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

定義和用法
fopen() 函數(shù)打開一個文件或 URL。
如果 fopen() 失敗,它將返回 FALSE 并附帶錯誤信息。您可以通過在函數(shù)名前面添加一個 '@' 來隱藏錯誤輸出。
語法
fopen(filename,mode,include_path,context)
參數(shù) | 描述 |
---|---|
filename | 必需。規(guī)定要打開的文件或 URL。 |
mode | 必需。規(guī)定您請求到該文件/流的訪問類型。 可能的值:
|
include_path | 可選。如果您還想在 include_path(在 php.ini 中)中搜索文件的話,請設置該參數(shù)為 '1'。 |
context | 可選。規(guī)定文件句柄的環(huán)境。context 是一套可以修改流的行為的選項。 |
提示和注釋
注釋:當書寫一個文本文件時,請確保您使用了正確的行結(jié)束符!在 Unix 系統(tǒng)中,行結(jié)束符為 \n;在 Windows 系統(tǒng)中,行結(jié)束符為 \r\n;在 Macintosh 系統(tǒng)中,行結(jié)束符為 \r。Windows 系統(tǒng)中提供了一個文本轉(zhuǎn)換標記 "t" ,可以透明地將 \n 轉(zhuǎn)換為 \r\n。您還可以使用 "b" 來強制使用二進制模式,這樣就不會轉(zhuǎn)換數(shù)據(jù)。為了使用這些標記,請使用 "b" 或者 "t" 來作為 mode 參數(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 語句
- PHP Switch 語句
- 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ù)