dpdx51205 2012-03-09 12:42
浏览 64
已采纳

如何知道本地URI / URL是否存在?

Let's assume my URL is mysite.com/myuri. There are many methods the world knows, to know if a local uri myuri exists on my site mysite.com.

  1. The easiest and the fastest method is:
    $uri_exists = file_exists($_SERVER['DOCUMENT_ROOT']."/myuri").
  2. The next method is:
    $headers = @get_headers("http://mysite.com/myuri");
    $uri_exists = ($headers[0] == "HTTP/1.1 404 Not Found");
  3. Another (a little faster than the previous one) method is:
    $curl = curl_init('http://mysite.com/myuri');
    curl_setopt($curl, CURLOPT_NOBODY, true);
    curl_exec($curl);
    $info = curl_getinfo($curl);
    $uri_exists = ($info['http_code'] == 200);
    curl_close($curl);

These were the methods I am aware of. The first method precisely checks if a file exists, not if a URI exists. If mod_rewrite is used, this method is highly inaccurate.

The next two methods are accurate (even when mod_rewrite is used) but slow since they perform remote GET requests to their own site. They are also inefficient because, just to know if a URI exists the scripts on mysite.com will execute themselves unnecessarily. Moreover they will cause unnecessary traffic to mysql server.

Coming to what I am trying to ask, I want the PHP scripts at mysite.com to check if a URL mysite.com/myuri exists using a method more efficient and accurate than the above three methods.

Thank you

Peace...

  • 写回答

2条回答 默认 最新

  • duanbinren8906 2012-03-09 12:46
    关注

    Instead of sending a GET request, which will result in having the contents of the uri returned to you, you could use a HEAD request, which, depending on the web application implementation, may just tell you some information about the uri instead of trying to return it.

    You could modify your third example using the following code:

    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'HEAD');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么