We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

buscarini on 06/13/08


Tagged


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

tikitakfire


Probar una url desde php


Published in: PHP 


  1. function http_test_existance($url) {
  2. return (($fp = @fopen($url, 'r')) === false) ? false : @fclose($fp);
  3. }

Report this snippet 

You need to login to post a comment.