php file_get_contents函数抓取页面信息,详见文中的例子。
<?php
/**
@抓取页面信息
@file_get_contents函数应用
@site www.
*/
$url="http://www./article/518.html";
$contents=@file_get_contents($url);
preg_match_all("/<h1>(.*?)<\/h1>/is",$contents,$content);
//测试,打印结果
print_r($content[0]);
?>
本文为大家介绍php 图片地址转换的代码,用正则取内容中的图片地址,然后进行base64_encode转换,示例如下。
//图片地址处理
//http://www.
function Getpics($body)
{
global $weburl;
//$body = strtolower()($body);
$img_array = array();
preg_match_all("/(src|SRC)=[\"|'| ]{0,}((http|HTTP):\/\/(.*)\.(gif|jpg|GIF|JPG|png))/isU",$body,$img_array);
$img_array = array_unique($img_array[2]);
foreach($img_array as $key=>$value)
{
$url = $value;
$fileurl = "/url.php?s=".base64_encode($url);
$body = str_replace()($url,$fileurl,$body);
}
return $body;
}?>
调用示例:
输出结果:
url.php是解码程序,大家参考php的相关解码函数,自己编写吧。
php 编程中自动检测内容,然后进行编码转换的函数,供大家学习参考了。
<?php
//自动检测 编码转换
function get_encoding($data,$to)
{
$encode_arr = array('UTF-8','ASCII','GBK','GB2312','BIG5','JIS','eucjp-win','sjis-win','EUC-JP');
$encoded = mb_detect_encoding($data, $encode_arr);
$data = mb_convert_encoding($data,$to,$encoded);
return $data;
//http://www.
//调用示例:get_encoding($data,"GB2312");
}
?>
学习php字符串编码的转换与判断
php判断字符串编码是否为utf8的函数举例
php获取字符串的编码格式的函数
php判断字符编码的二个方法
自动检测内容中的编码并进行转换的函数
php编码转换函数(自动转换字符集支持数组转换)
php改变编码的函数iconv