Jump to content
  • 0

Файл загружается в браузер, а PHP ругается


bigwig
 Share

Question

Доброго времени суток!

Есть такая проблема: файл http://www.isradrive.info/znaki/1.xml

загружается в браузер, однако функция PHP ругается, что нет такого файла:

$fname = "http://www.isradrive.info/znaki/1.xml";
if (!file_exists($fname)) {
echo "Error...."
}

Как это можно объяснить и как все-таки загрузить этот файл?

Спасибо.

P.S. Файл взят из http://www.isradrive.info/ выводится в новом окне при нажатии на дорожный знак.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Функция file_exists() не предназначена для проверки файлов по http.

Используйте curl:

if (!curl_init('http://www.isradrive.info/znaki/1.xml')) {
echo "Error...."
}

Если это расширения установлено.

Иначе:

$file_headers = @get_headers('http://www.isradrive.info/znaki/1.xml');
if(strpos($file_headers[0],'404' ) {
echo "Error...."
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy