php的readfile() 函數會讀取一個文件,並寫入到輸出緩衝。
如果成功,函數會傳回從檔案中讀入的位元組數。如果失敗,函數會傳回 FALSE 並附帶錯誤訊息。您可以透過在函數名稱前面加上一個 '@' 來隱藏錯誤輸出。 (推薦學習:PHP影片教學)
語法
readfile(filename,include_path,context)
<?php echo readfile("test.txt"); ?>
## #上面的程式碼會輸出:######
There are two lines in this file. This is the last line. 57
以上是php的readfile能讀圖片嗎的詳細內容。更多資訊請關注PHP中文網其他相關文章!