Warning: Undefined array key "topic_id" in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 5
Warning: Undefined variable $forum_ in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 21
Warning: Undefined variable $file in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 35
分类:PHP工具与代码
17-06-29
案例解析
一、简单的采集
这里所指的简单采集,是指一个单一页面GET请求的采集,它简单得即使通过file_get_contents函数也能轻松获得页面返回结果。
代码片段之file_get_contents
[code:3p2e9bd6]
$url = 'httphtml';
...
17-06-29
工具
火狐浏览器(FireFox) + Firebug
“工欲善其事,必先利其器。” 在分析案例之前,先让我们学习一下如何利用神器Firebug获取我们必要的信息。
使用F12打开Firebug,我们可以得到如图(一)界面:
Firebug
箭头图标是“元素选...
17-06-29
php curl cookie的使用 curl发送cookie的2种途径
curl的cookie怎么使用?新手都很头疼的,curl的参数太多了,其中cookie部分就涉及了4个。
当然了,手册上明白写的curl的cookie是3个,但是嘛,不是还有个header的参数嘛,里面可以包含cook...
17-06-29
模拟cookie刷贴实例:
[code:1jlloiro]<?php
$ch = curl_init();
//保存该次请求的cookie内容到文件cookie.txt
curl_setopt($ch, CURLOPT_COOKIEJAR, ”E:/cookie.txt”);
///要请求的链接,此链接请求...
17-06-28
3. 使用gzip解压函数
[code:2x2j018w]function gzdecode($data) {
$len = strlen($data);
if ($len < 18 || strcmp(substr($data,0,2),"\x1f\x8b")) {
return null; // Not GZIP format (See RFC 1952)
}
...
17-06-28
编码问题好办,把抓取到的内容转下编码即可($content=iconv("GBK", "UTF-8//IGNORE", $content);),我们这里讨论的是如何抓取开了Gzip的页面。怎么判断呢?获取的头部当中有Content-Encoding: gzip说明内容是GZIP压...
17-06-28
具体操作,在图片目录下放置.htaccess的文件(Windows主机貌似不支持此功能),内容如下
[code:o7ob14ia]RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$ [NC]
RewriteCond %{HTTP_REFERER} !biaodianfu....
17-06-28
Php在线解美化/混淆/加密/解密 - 在线工具http://tool.lu/php/
PHP源码加密,以前只知道zend guard,今天才知道,原来还有个 ioncube
需要上传加密文件
PHP在线加密|PHP混淆加密
class="postlink" href="http://www.zhaoyuanma.com/p...
17-06-28
[code:2y3d9hnl]$content = "31213412313123<!--sharetoview start--> asdfasd dfasdf asd fads f<!--sharetoview end-->ccccccccccccc";
//echo $content;
preg_match_all('/<!--sharetoview start-->([...
17-06-28
例3:
下列代码,显示的汉字正常,说明可以正常读取完整文件:
$files = file_get_contents('d:/test.txt');
echo $files;
如果在上述脚本程序的头一行,使用charset=utf-8,则可能出现汉字显示乱码。具体原因,请看本文...