欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

比较有用的php代码片断

程序员文章站 2024-01-23 15:50:40
...
比较有用的php代码片段

一 从网页中提取关键词

$meta = get_meta_tags('http://www.emoticode.net/');$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. $html = file_get_contents('http://www.example.com');
  2. $dom = new DOMDocument();
  3. @$dom->loadHTML($html);
  4. // grab all the on the page
  5. $xpath = new DOMXPath($dom);
  6. $hrefs = $xpath->evaluate("/html/body//a");
  7. for ($i = 0; $i $hrefs->length; $i++) {
  8. $href = $hrefs->item($i);
  9. $url = $href->getAttribute('href');
  10. echo $url.'
    ';
  11. }
    
    

    三 创建数据URI

    数据URI可以帮助将图像嵌入到HTML/CSS/JS中,从而节省HTTP请求。下面的函数可以利用$file创建数据URI。 function data_uri($file, $mime) {    $contents=file_get_contents($file);    $base64=base64_encode($contents);    echo "data:$mime;base64,$base64";}

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

    当你在搭建网站时,很可能会从远程服务器上下载图片保存到你自己的服务器上,下面的代码就可以帮助你实现这个功能。$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标签。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("]*>","",$html);// then run another pass over the html (twice), removing unwanted attributes$html = ereg_replace("]*)(class|lang|style|size|face)=("[^"]*"|'[^']*'|[^>]+)([^>]*)>","",$html);$html = ereg_replace("]*)(class|lang|style|size|face)=("[^"]*"|'[^']*'|[^>]+)([^>]*)>","",$html);return $html}

    六 检测浏览器语言

    如果你的网站是多种语言的,下面的代码可以帮助你检测浏览器语言,它会返回客户端浏览器的默认语言。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);

    八 excel相互转换日期

    //如果去获取某个excel日期(格式为:2016-03-12),那么获取到的是数字,需要经过转换才能恢复
    public
    function excelTime($date, $time = false) { if(function_exists('GregorianToJD')){ if (is_numeric( $date )) { $jd = GregorianToJD( 1, 1, 1970 ); $gregorian = JDToGregorian( $jd + intval ( $date ) - 25569 ); $date = explode( '/', $gregorian ); $date_str = str_pad( $date [2], 4, '0', STR_PAD_LEFT ) ."-". str_pad( $date [0], 2, '0', STR_PAD_LEFT ) ."-". str_pad( $date [1], 2, '0', STR_PAD_LEFT ) . ($time ? " 00:00:00" : ''); return $date_str; } }else{ // $date=$date>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; } }

    9 json与数据相互转换

    1 json转换成数组$json = '[{"id":"22","name":"33","descn":"44"}]'; //json格式的数组转换成 php的数组$arr = (Array)json_decode($json);echo $arr[0]->id; //用对象的方式访问(这种是没有转换成数组,而是转换成对象的情况
    2 数组转换成json$json_arr = array('WebName'=>'11','WebSite'=>'11');$php_json = json_encode($json_arr); //把php数组格式转换成 json 格式的数据echo $php_json;

    比较有用的php代码片断

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

    相关文章

    相关视频


    网友评论

    文明上网理性发言,请遵守 新闻评论服务协议

    我要评论
  12. 比较有用的php代码片断

专题推荐

作者信息
比较有用的php代码片断

认证0级讲师

推荐视频教程
  • 比较有用的php代码片断javascript初级视频教程
  • 比较有用的php代码片断jquery 基础视频教程
  • 视频教程分类
    相关标签: date html keywords json gt

    上一篇: 使用Instruments解决EXC_BAD_ACCESS

    下一篇:

    推荐阅读