天机不可泄漏也

我有书半卷

导航

2012年1月30日 #

PHP Shell脚本获取所有WordPress Themes

摘要: 1 #! /usr/bin/php 2 <?php 3 set_time_limit(0); 4 $base='http://wordpress.org/extend/themes/browse/popular/page/'; 5 for($i=1;$i<98;$i++){ 6 $currentPage=$base.$i; 7 $currentContent=file_get_contents($currentPage); 8 $blocks=explode('<div class="plugin-block">',$ 阅读全文

posted @ 2012-01-30 16:09 天机不可泄漏也 阅读(249) 评论(0) 推荐(0) 编辑