|
|
|
|
||||||
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
Hi,
Can anyone tell me how to connect to a URL using PHP for the purpose of obtaining the HTTP response code? Specifically, I want to be able to ascertain whether a link is down (404) or alive. A bare-bones example would be appreciated. Thanks! |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
On 13 Nov, 11:00, AK <danr...@gmail.com> wrote:
> Hi, > > Can anyone tell me how to connect to a URL using PHP for the purpose > of obtaining the HTTP response code? Specifically, I want to be able > to ascertain whether a link is down (404) or alive. > > A bare-bones example would be appreciated. > > Thanks! Try typing php http request into Google |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
On Nov 13, 8:00 am, AK <danr...@gmail.com> wrote:
> Hi, > > Can anyone tell me how to connect to a URL using PHP for the purpose > of obtaining the HTTP response code? Specifically, I want to be able > to ascertain whether a link is down (404) or alive. > > A bare-bones example would be appreciated. > > Thanks! Perhaps this could http://ar.php.net/manual/en/function.fopen.php#58099 |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
On Nov 13, 12:00 pm, AK <danr...@gmail.com> wrote:
.... > Can anyone tell me how to connect to a URL using PHP for the purpose > of obtaining the HTTP response code? Specifically, I want to be able > to ascertain whether a link is down (404) or alive. > > A bare-bones example would be appreciated. <?php file_get_contents("http://google.com"); var_dump($http_response_header); ?> Csaba Gabor from Vienna |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
On Nov 14, 12:09 am, Csaba Gabor <dans...@gmail.com> wrote:
> On Nov 13, 12:00 pm, AK <danr...@gmail.com> wrote: > ... > > > Can anyone tell me how to connect to a URL using PHP for the purpose > > of obtaining the HTTP response code? Specifically, I want to be able > > to ascertain whether a link is down (404) or alive. > > > A bare-bones example would be appreciated. > > <?php > file_get_contents("http://google.com"); > var_dump($http_response_header); > ?> > > Csaba Gabor from Vienna Thanks, that's the sort of "quick solution" I was looking for (although I managed to find it myself after a bit of digging: $arr = get_headers("http://www.google.com"); is even more concise) Thanks to the previous responses as well, including the one that suggested using a quaint little thing that seems to have the amazing ability to search through web pages! (Google, I think it's called... ) Cheers |
|
|
|
#6 |
|
Messages: n/a
Hébergeur: |
In our last episode,
<1194951649.555713.91490@k79g2000hse.googlegroups. com>, the lovely and talented AK broadcast on comp.lang.php: > Hi, > Can anyone tell me how to connect to a URL using PHP for the purpose > of obtaining the HTTP response code? Specifically, I want to be able > to ascertain whether a link is down (404) or alive. > A bare-bones example would be appreciated. > Thanks! Is there some reason searching the manual index on 'http' did not turn up http_head for you? -- Lars Eighner <http://larseighner.com/> <http://myspace.com/larseighner> Countdown: 432 days to go. What do you do when you're debranded? |
|
![]() |
| Outils de la discussion | |
|
|