当前位置: 网学 > 编程文档 > PHP > 正文

十个超级有用的PHP代码片段

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/01/02
ebook.com/digimantra      $data = json_decode(file_get_contents("https://graph.facebook.com/".$facebook_name));      echo $data->likes;  } 6. 检测图片的主要颜色$i = imagecreatefromjpeg("image.jpg");   for ($x=0;$x<imagesx($i);$x++) {      for ($y=0;$y<imagesy($i);$y++) {          $rgb = imagecolorat($i,$x,$y);          $r   = ($rgb >> 16) & 0xFF;          $g   = ($rgb >>  & 0xFF;          $b   = $rgb & 0xFF;           $rTotal += $r;          $gTotal += $g;          $bTotal += $b;          $total++;      }  }   $rAverage = round($rTotal/$total);  $gAverage = round($gTotal/$total);  $bAverage = round($bTotal/$total); 7. 获取内存使用信息echo "Initial: ".memory_get_usage()." bytes \n";  /* prints  Initial: 361400 bytes  */  // let''s use up some memory  for ($i = 0; $i < 100000; $i++) {      $array []= md5($i);  }   // let''s remove half of the array  for ($i = 0; $i < 100000; $i++) {      unset($array[$i]);  }   echo "Final: ".memory_get_usage()." bytes \n";  /* prints  Final: 885912 bytes  */  echo "Peak: ".memory_get_peak_usage()." bytes \n";  /* prints  Peak: 13687072 bytes  */ 8. 使用 gzcompress() 压缩数据$string =  "Lorem ipsum dolor sit amet, consectetur  adipiscing elit. Nunc ut elit id mi ultricies  adipiscing. Nulla facilisi. Praesent pulvinar,  sapien vel feugiat vestibulum, nulla dui pretium orci,  non ultricies elit lacus quis ante. Lorem ipsum dolor  sit amet, consectetur adipiscing elit. Aliquam  pretium ullamcorper urna quis iaculis. Etiam 
  • 下一篇资讯: PHP 5.3.9正式版发布!
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号