时间:2021-05-02
本文整理归纳了php实用代码片段。分享给大家供大家参考,具体如下:
一 从网页中提取关键词
? 1 2 3 4 5 6 7 8 9 $meta = get_meta_tags('http://www.zzvips.com/'); $keywords = $meta['keywords']; // Split keywords $keywords = explode(',', $keywords ); // Trim them $keywords = array_map( 'trim', $keywords ); // Remove empty values $keywords = array_filter( $keywords ); print_r( $keywords );二 查找页面上的所有链接
使用DOM,你可以在任意页面上抓取链接,示例如下。
? 1 2 3 4 5 6 7 8 9 10 11 $html = file_get_contents('http://www.example.com'); $dom = new DOMDocument(); @$dom->loadHTML($html); // grab all the on the page $xpath = new DOMXPath($dom); $hrefs = $xpath->evaluate("/html/body//a"); for ($i = 0; $i < $hrefs->length; $i++) { $href = $hrefs->item($i); $url = $href->getAttribute('href'); echo $url.'<br />'; }三 创建数据URI
数据URI可以帮助将图像嵌入到HTML/CSS/JS中,从而节省HTTP请求。下面的函数可以利用$file创建数据URI。
? 1 2 3 4 5 function data_uri($file, $mime) { $contents=file_get_contents($file); $base64=base64_encode($contents); echo "data:$mime;base64,$base64"; }四 下载和保存远程图片到你的服务器
当你在搭建网站时,很可能会从远程服务器上下载图片保存到你自己的服务器上,下面的代码就可以帮助你实现这个功能。
? 1 2 $image = file_get_contents('http://www.php100.com/image.jpg'); file_put_contents('/images/image.jpg', $image); //Where to save the image五 移除Microsoft Word HTML标签
当你使用Microsoft Word时,会创建很多标签tag,比如font、span、style、class等,这些标签在Word中十分有用,但当你从Word中把文本粘贴到网页上,就会出现很多没用的标签。下面实用的函数可以帮助你清除所有的Word HTML标签。
? 1 2 3 4 5 6 7 8 9 10 11 12 function cleanHTML($html) { /// /// Removes all FONT and SPAN tags, and all Class and Style attributes. /// Designed to get rid of non-standard Microsoft Word HTML tags. /// // start by completely removing all unwanted tags $html = ereg_replace("<(/)?(font|span|del|ins)[^>]*>","",$html); // then run another pass over the html (twice), removing unwanted attributes $html = ereg_replace("<([^>]*)(class|lang|style|size|face)=("[^"]*"|'[^']*'|[^>]+)([^>]*)>","<\1>",$html); $html = ereg_replace("<([^>]*)(class|lang|style|size|face)=("[^"]*"|'[^']*'|[^>]+)([^>]*)>","<\1>",$html); return $html }六 检测浏览器语言
如果你的网站是多种语言的,下面的代码可以帮助你检测浏览器语言,它会返回客户端浏览器的默认语言。
? 1 2 3 4 5 6 7 8 9 10 11 12 function get_client_language($availableLanguages, $default='en'){ if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { $langs=explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']); foreach ($langs as $value){ $choice=substr($value,0,2); if(in_array($choice, $availableLanguages)){ return $choice; } } } return $default; }七 保存请求信息到本地
复制代码 代码如下: file_put_contents('/tmp/all.log','mapping'.date("m-d H:i:s")."\n",FILE_APPEND);九 json与数据相互转换
1 json转换成数组
? 1 2 3 $json = '[{"id":"22","name":"33","descn":"44"}]'; //json格式的数组转换成 php的数组 $arr = (Array)json_decode($json); echo $arr[0]->id; //用对象的方式访问(这种是没有转换成数组,而是转换成对象的情况2 数组转换成json
? 1 2 3 $json_arr = array('WebName'=>'11','WebSite'=>'11'); $php_json = json_encode($json_arr); //把php数组格式转换成 json 格式的数据 echo $php_json;希望本文所述对大家PHP程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
分享一个非常实用,本人一直在用的利用php弹出警告的函数,整理到自己的代码库中去在遇到错误的地方可用到此函数,扩展性强,完整代码如下复制代码代码如下://***
php使用ftp实现文件上传代码片段:'ip','port'=>21,'user'=>'userName','pwd'=>'password');/***打开并
PHP通过提取魔术引号产生的“\”字符会带来一定的安全问题,例如下面这段代码片段://foo.php?xigr='ryatfunctiondaddsla
比较有用的php代码片段,分享给大家供大家参考,具体代码如下一、从网页中提取关键词$meta=get_meta_tags('http://pletelyremo
代码片段一:代码片段二:$(function(){//----分页部分代码片段一开始----vartotalPage=20;//总共多少页vartotalRec