当前位置:编程学习 > php >>

php获取http-header来判断文件是否存在

 

想要用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/易做图/325.xss | Shine的圣天堂-〃敏〃

补充:Web开发 , php ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,