当前位置:首页 > PHP教程 > php应用 > 列表

9个比较实用的php代码片段

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-14 20:49:54 浏览: 评论:0 

这篇文章主要介绍了9个非常有用的PHP代码片段,可以帮助你开发 PHP项目,下面这里收集了9个PHP代码片段,感兴趣的小伙伴们可以参考一下。

比较有用的php代码片段,分享给大家供大家参考,具体代码如下

一、从网页中提取关键词

  1. $meta = get_meta_tags('http://www.phpfensi.com/'); 
  2. $keywords = $meta['keywords']; 
  3. // Split keywords 
  4. $keywords = explode(','$keywords ); 
  5. // Trim them 
  6. $keywords = array_map'trim'$keywords ); 
  7. // Remove empty values 
  8. $keywords = array_filter$keywords ); 
  9.  
  10. print_r( $keywords ); 

二、查找页面上的所有链接

使用DOM,你可以在任意页面上抓取链接,示例如下。

  1. $html = file_get_contents('http://www.phpfensi.com'); 
  2.    
  3. $dom = new DOMDocument(); 
  4. @$dom->loadHTML($html); 
  5.    
  6. // grab all the on the page 
  7. $xpath = new DOMXPath($dom); 
  8. $hrefs = $xpath->evaluate("/html/body//a"); 
  9.    
  10. for ($i = 0; $i < $hrefs->length; $i++) { 
  11. $href = $hrefs->item($i); 
  12. $url = $href->getAttribute('href'); 
  13. echo $url.'<br />'

三、创建数据URI

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

  1. function data_uri($file$mime) { 
  2.   $contents=file_get_contents($file); 
  3.   $base64=base64_encode($contents); 
  4.   echo "data:$mime;base64,$base64"

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

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

$image = file_get_contents('http://www.phpfensi.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. function cleanHTML($html) { 
  2. ///  
  3. /// Removes all FONT and SPAN tags, and all Class and Style attributes. 
  4. /// Designed to get rid of non-standard Microsoft Word HTML tags. 
  5. ///  
  6. // start by completely removing all unwanted tags 
  7.  
  8. $html = ereg_replace("<(/)?(font|span|del|ins)[^>]*>","",$html); 
  9.  
  10. // then run another pass over the html (twice), removing unwanted attributes 
  11.  
  12. $html = ereg_replace("<([^>]*)(class|lang|style|size|face)=("[^"]*"|'[^']*'|[^>]+)([^>]*)>","<\1>",$html); 
  13. $html = ereg_replace("<([^>]*)(class|lang|style|size|face)=("[^"]*"|'[^']*'|[^>]+)([^>]*)>","<\1>",$html); 
  14.  
  15. return $html 

六、检测浏览器语言

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

  1. function get_client_language($availableLanguages$default='en'){ 
  2.   if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { 
  3.      $langs=explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']); 
  4.  
  5.      foreach ($langs as $value){ 
  6.        $choice=substr($value,0,2); 
  7.        if(in_array($choice$availableLanguages)){ 
  8.           return $choice
  9.        } 
  10.      } 
  11.    }  
  12.    return $default

七、保存请求信息到本地,代码如下:

file_put_contents('/tmp/all.log','mapping'.date("m-d H:i:s")."\n",FILE_APPEND);

八、excel相互转换日期

如果去获取某个excel日期(格式为:2016-03-12),那么获取到的是数字,需要经过转换才能恢复。

  1. public function excelTime($date$time = false) { 
  2.  
  3.       if(function_exists('GregorianToJD')){ 
  4.  
  5.         if (is_numeric$date )) { 
  6.  
  7.         $jd = GregorianToJD( 1, 1, 1970 ); 
  8.  
  9.         $gregorian = JDToGregorian( $jd + intval ( $date ) - 25569 ); 
  10.  
  11.         $date = explode'/'$gregorian ); 
  12.  
  13.         $date_str = str_pad$date [2], 4, '0', STR_PAD_LEFT ) 
  14.  
  15.         ."-"str_pad$date [0], 2, '0', STR_PAD_LEFT ) 
  16.  
  17.         ."-"str_pad$date [1], 2, '0', STR_PAD_LEFT ) 
  18.  
  19.         . ($time ? " 00:00:00" : ''); 
  20.  
  21.         return $date_str
  22.         } 
  23.  
  24.       }else
  25.  
  26.         // $date=$date>25568? $date+1:25569; 
  27.  
  28.         /*There was a bug if Converting date before 1-1-1970 (tstamp 0)*/ 
  29.  
  30.         $ofs=(70 * 365 + 17+2) * 86400; 
  31.  
  32.         $date = date("Y-m-d",($date * 86400) - $ofs).($time ? " 00:00:00" : ''); 
  33.         return $date
  34.       } 
  35.  
  36.   } 

九、json与数据相互转换

1 json转换成数组

$json = '[{"id":"22","name":"33","descn":"44"}]'; //json格式的数组转换成 php的数组

$arr = (Array)json_decode($json);

echo $arr[0]->id; //用对象的方式访问(这种是没有转换成数组,而是转换成对象的情况

2 数组转换成json

  1. $json_arr = array('WebName'=>'11','WebSite'=>'11'); 
  2. $php_json = json_encode($json_arr); //把php数组格式转换成 json 格式的数据 
  3. echo $php_json

以上就是本文的全部内容,希望对大家的学习有所帮助。

Tags: php实用代码片段

分享到: