php实用代码片段整理

前端之家收集整理的这篇文章主要介绍了php实用代码片段整理前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文整理归纳了PHP实用代码片段。分享给大家供大家参考,具体如下:

一 从网页中提取关键词

PHP;"> $Meta = get_Meta_tags('//www.jb51.cc/'); $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,你可以在任意页面上抓取链接,示例如下。

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.'
'; }

三 创建数据URI

数据URI可以帮助将图像嵌入到HTML/CSS/JS中,从而节省HTTP请求。下面的函数可以利用$file创建数据URI。

PHP;"> function data_uri($file,$mime) { $contents=file_get_contents($file); $base64=base64_encode($contents); echo "data:$mime;base64,$base64"; }

四 下载和保存远程图片到你的服务器

当你在搭建网站时,很可能会从远程服务器上下载图片保存到你自己的服务器上,下面的代码就可以帮助你实现这个功能

PHP;"> $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标签

PHP;"> 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)=("[^"]*"|'[^']*'|[^>]+)([^>]*)>",$html); return $html }

六 检测浏览器语言

如果你的网站是多种语言的,下面的代码可以帮助你检测浏览器语言,它会返回客户端浏览器的默认语言。

PHP;"> 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,2); if(in_array($choice,$availableLanguages)){ return $choice; } } } return $default; }

七 保存请求信息到本地

代码如下:

八 excel相互转换日期

25568? $date+1:25569; /*There was a bug if Converting date before 1-1-1970 (tstamp 0)*/ $ofs=(70 * 365 + 17+2) * 86400; $date = date("Y-m-d",($date * 86400) - $ofs).($time ? " 00:00:00" : ''); return $date; } }

九 json与数据相互转换

1 json转换成数组

id; //用对象的方式访问(这种是没有转换成数组,而是转换成对象的情况

2 数组转换成json

'11','WebSite'=>'11'); $PHP_json = json_encode($json_arr); //把PHP数组格式转换成 json 格式的数据 echo $PHP_json;

更多关于PHP相关内容感兴趣的读者可查看本站专题:《@L_403_1@》、《》、《》、《》、《》、《》及《

希望本文所述对大家PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/18546.html

猜你在找的PHP相关文章