PHP采集静态页面并把页面css,img,js保存的方法
程序员文章站
2023-11-11 16:52:04
本文实例讲述了php采集静态页面并把页面css,img,js保存的方法。分享给大家供大家参考。具体分析如下:
这是一个可以获取网页的html代码以及css,js,font...
本文实例讲述了php采集静态页面并把页面css,img,js保存的方法。分享给大家供大家参考。具体分析如下:
这是一个可以获取网页的html代码以及css,js,font和img资源的小工具,主要用来快速获取模板,如果你来不及设计ui或者看到不错的模板,则可以使用这个工具来抓取网页和提取资源文件,提取的内容会按相对路径来保存资源,因此你不必担心资源文件的错误url导入.
首页 index.php,代码如下:
复制代码 代码如下:
<!doctype html>
<html>
<head>
<meta name="author" content="flute" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>网页抓取器</title>
<link rel="stylesheet" href="main.css" media="all" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<h1>web grabber</h1>
<hr />
<div class="box">
<h2>url</h2>
<div class="form">
<input type="text" id="project" value="projectname" />
<input type="text" id="url" value="http://" size="60" />
<button class="submit" type="button">get</button><span id="tip"></span>
</div>
</div>
<div class="box">
<span class="all" id="saveall">save all</span>
<h2>list</h2>
<ul id="list">
</ul>
</div>
</body>
</html>
<html>
<head>
<meta name="author" content="flute" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>网页抓取器</title>
<link rel="stylesheet" href="main.css" media="all" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<h1>web grabber</h1>
<hr />
<div class="box">
<h2>url</h2>
<div class="form">
<input type="text" id="project" value="projectname" />
<input type="text" id="url" value="http://" size="60" />
<button class="submit" type="button">get</button><span id="tip"></span>
</div>
</div>
<div class="box">
<span class="all" id="saveall">save all</span>
<h2>list</h2>
<ul id="list">
</ul>
</div>
</body>
</html>
抓取页面代码 grab.php,代码如下:
复制代码 代码如下:
<?php
/*
* flute
* 2014/03/31
*/
if(isset($_post['url'])) {
if(isset($_post['project']) && !is_dir($_post['project'])) mkdir($_post['project'], 0777);
echo json_encode(grab($_post['url']));
}
function grab($url) {
//$url = 'http://ldixing-wordpress.stor.sinaapp.com/uploads/leaves/test.html';
$data = array();
$file = preg_replace('/^.*//', '', $url);
if(($content = file_get_contents($url)) !== false) {
if(isset($_post['project'])) file_put_contents($_post['project'].'/'.$file, $content);
$pattern = '/<link.*?href=('|")(.*?.css)1.*?>/i';
if(preg_match_all($pattern, $content, $matches)) {
$data['css'] = $matches[2];
}
$pattern = '/<script.*?src=('|")(.*?.js)1.*?>/i';
if(preg_match_all($pattern, $content, $matches)) {
$data['js'] = $matches[2];
}
$pattern = '/<img.*?src=('|")(.*?)1.*?>/i';
if(preg_match_all($pattern, $content, $matches)) {
$data['img'] = $matches[2];
}
$pattern = '/url(('|"|s)(.*?)1)/i';
if(preg_match_all($pattern, $content, $matches)) {
$data['src'] = $matches[2];
}
}
return $data;
}
/*
* flute
* 2014/03/31
*/
if(isset($_post['url'])) {
if(isset($_post['project']) && !is_dir($_post['project'])) mkdir($_post['project'], 0777);
echo json_encode(grab($_post['url']));
}
function grab($url) {
//$url = 'http://ldixing-wordpress.stor.sinaapp.com/uploads/leaves/test.html';
$data = array();
$file = preg_replace('/^.*//', '', $url);
if(($content = file_get_contents($url)) !== false) {
if(isset($_post['project'])) file_put_contents($_post['project'].'/'.$file, $content);
$pattern = '/<link.*?href=('|")(.*?.css)1.*?>/i';
if(preg_match_all($pattern, $content, $matches)) {
$data['css'] = $matches[2];
}
$pattern = '/<script.*?src=('|")(.*?.js)1.*?>/i';
if(preg_match_all($pattern, $content, $matches)) {
$data['js'] = $matches[2];
}
$pattern = '/<img.*?src=('|")(.*?)1.*?>/i';
if(preg_match_all($pattern, $content, $matches)) {
$data['img'] = $matches[2];
}
$pattern = '/url(('|"|s)(.*?)1)/i';
if(preg_match_all($pattern, $content, $matches)) {
$data['src'] = $matches[2];
}
}
return $data;
}
function vardump($obj) {
echo '<pre>';
print_r($obj);
echo '</pre>';
}
?>
保存css,js,img等资源的页面 save.php,代码如下:
复制代码 代码如下:
<?php
/*
* flute
* 2014/03/31
*/
if(isset($_post['url']) && isset($_post['project']) && isset($_post['domain'])) {
extract($_post);
$url = preg_replace('/?.*$/', '', $url);
$file = $url;
$arr = explode('/', $file);
$length = sizeof($arr);
$filename = $arr[$length - 1];
$root = $project;
$dir = $root;
if($domain == 'http') {
$dir = $root.'/http';
if(!is_dir($dir)) mkdir($dir, 0777);
} else {
$file = $domain.'/'.$url;
for($i = 0; $i < $length -1; $i++) {
if(!emptyempty($arr[$i])) {
$dir .= '/'.$arr[$i];
if(!is_dir($dir)) mkdir($dir, 0777);
}
}
}
if(!file_exists($dir.'/'.$filename) || filesize($dir.'/'.$filename) == 0) {
$content = file_get_contents($file);
file_put_contents($dir.'/'.$filename, $content);
}
}
?>
/*
* flute
* 2014/03/31
*/
if(isset($_post['url']) && isset($_post['project']) && isset($_post['domain'])) {
extract($_post);
$url = preg_replace('/?.*$/', '', $url);
$file = $url;
$arr = explode('/', $file);
$length = sizeof($arr);
$filename = $arr[$length - 1];
$root = $project;
$dir = $root;
if($domain == 'http') {
$dir = $root.'/http';
if(!is_dir($dir)) mkdir($dir, 0777);
} else {
$file = $domain.'/'.$url;
for($i = 0; $i < $length -1; $i++) {
if(!emptyempty($arr[$i])) {
$dir .= '/'.$arr[$i];
if(!is_dir($dir)) mkdir($dir, 0777);
}
}
}
if(!file_exists($dir.'/'.$filename) || filesize($dir.'/'.$filename) == 0) {
$content = file_get_contents($file);
file_put_contents($dir.'/'.$filename, $content);
}
}
?>
使用方法:
1. 打开index页,输入项目名和要抓取的网址,网址必须是文件名结尾,如index.html;
2. 点get按钮,得到当前页面所有的css,js,img等资源列表;
3. 点击css链接会获取css文件中的背景资源图片,附加在列表后头;
4. 点击save all即可保存列表中所有的文件,并按相对路径生成;
5. 如果网页上有http远程文件,将会直接保存在http文件夹下;
6. get和save有时会失败,没关系重试几次即可。
希望本文所述对大家的php程序设计有所帮助。
推荐阅读
-
PHP采集静态页面并把页面css,img,js保存的方法
-
js+php实现静态页面实时调用用户登陆状态的方法
-
PHP采集静态页面并把页面css,img,js保存的方法
-
PHP采集静态页面并把页面css,img,js保存的方法_PHP
-
PHP采集静态页面并把页面css,img,js保存的方法_PHP
-
js+php实现静态页面实时调用用户登陆状态的方法
-
PHP采集静态页面并把页面css,img,js保存的方法
-
PHP采集静态页面并把页面css,img,js保存的方法,静态页面css_PHP教程
-
PHP采集静态页面并把页面css,img,js保存的方法_php技巧
-
PHP采集静态页面并把页面css,img,js保存的方法_php技巧