0
我想通過fopen()
函數打開遠程文件時獲取HTTP錯誤代碼。PHP:獲取fopen()HTTP響應錯誤代碼
我有以下代碼:
$remote = fopen ($url, "rb");
如果URL是好的,該文件將被打開。否則,fopen
將觸發類似於Warning: fopen(url): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
的錯誤消息。
我知道加入@
的fopen()
將suppress the error message,
但?我怎樣才能HTTP錯誤代碼,而不是之前?
在這裏,我想在變量中獲得HTTP/1.1 404 Not Found
。
謝謝。