Detailed explanation of the difference between get_headers and curl in php

小云云
Release: 2023-03-21 08:30:01
Original
2774 people have browsed it

When judging whether a link is accessible in php, I checked the documentation and saw that there is a get_headers() method, but in actual use it does not seem to be as fast as curl -I, so I tested it and found that get_headers() in php ) method actually sends a get request, while curl -I in the Linux command sends a head request, so if you only determine whether a link is 200, using curl -I is a better choice.

We enter the curl -I command


Looking at the Nginx log, we can know that a Head request was sent


We use the get_headers() method


and find that it is a get request


Related recommendations:

get_headers function determines whether the remote file exists

php get_headers Introduction to the method of determining whether the URL is valid

php Code example to simulate get_headers function_PHP tutorial

The above is the detailed content of Detailed explanation of the difference between get_headers and curl in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!