這篇文章主要介紹了PHP批量獲取網頁中所有固定種子鏈接的方法,涉及php字符串與文件操作的相關技巧,需要的朋友可以參考下
經常的下載鏈接比較多的時候,就像一次性將所有的鏈接添加到迅雷或電爐,但是沒有在這種選項,怎麼辦,咱是PHPer啊,這事兒難不到咱
且看程式碼,當然要換成你的,要根據具體情況來做修改。
<?php header("content-type:text/html;charset=utf8"); $str = file_get_contents('./ShowFile.asp'); $str1 = '<a href="ed2k'; $str2 = '">'; $pos1 = 0; $pos2 = 0; $pos3 = 0; $len = strlen($str); $ed2k = ''; for($i=5000;$i<$len; ){ $pos1 = strpos($str,$str1,$i) + 9; $pos2 = strpos($str,$str2,$pos1) - 2; $pos3 = $pos2 - $pos1; //说明特征连接已经不存在 放弃寻找 if($pos1 == 9){break;} $ed2k = substr($str,$pos1,$pos3+1)."\r\n"; file_put_contents('d:/log/a.txt',$ed2k,FILE_APPEND); echo substr($str,$pos1,$pos3+1).'<hr/>'; $i = $pos2; } ?>
以上就是本文的全部內容,希望對大家的學習有幫助。
相關推薦:
#
以上是PHP實作大量取得網頁中所有固定種子連結的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!