程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php獲取http-header來判斷文件是否存在

php獲取http-header來判斷文件是否存在

編輯:關於PHP編程

 

想要用php寫個文件探測的,可是悲劇的發現php是單線程的,速度很慢,先記錄下,晚上回來在修改。

 <?php

set_time_limit(0);

$file = 'PHP.txt';

$content = file_get_contents($file);

//echo $content;

 

$array = explode("\r\n", $content);

//print_r($array);

$url = 'http://xssxss.com'; 

for($i=0; $i<count($array); $i++)

{

$header_array = get_headers ( $url.$array[$i] );  

if ($header_array [0] == 'HTTP/1.1 200 OK') {  

    echo '<a href="'.$url.$array[$i].'">'.'文件存在</br>';

       echo 'scan is finish';

} else {  

 

}

}

?>

 

本文固定鏈接: http://www.xssxss.com/fuck/325.xss | Shine的聖天堂-〃敏〃

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved