php中fopen函數的用法是「fopen(filename,mode,include_path,context)」。 fopen()函數用來開啟一個檔案或是url,如果失敗則回傳false並附帶錯誤訊息。
本文操作環境:windows10系統、php7、thinkpad t480電腦。
我們先來簡單看下fopen()函數的定義與回傳值。
fopen() 函數用來開啟一個檔案或 URL,如果 fopen() 函數開啟失敗,它將傳回 FALSE 並附帶錯誤訊息。當然我們是可以透過在函數名稱前面加上一個 '@' 來隱藏錯誤輸出的。
接下來我們來看看它的語法:
fopen(filename,mode,include_path,context)
參數介紹:
filename:規定要開啟的檔案或URL。
mode:規定要求到該檔案/流的存取類型。
include_path:可選,如果也需要在include_path中檢索檔案的話,可以將該參數設為1或TRUE。
context:可選,規定檔案句柄的環境,Context是可以修該流的行為的一套選項。
最後讓我們一起來看看使用fopen()函數的範例:
<?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"); ?>
推薦學習:php訓練
##
以上是php中fopen函數的用法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!