10个必须收藏的PHP代码样例

一、黑名单过滤


  1. function is_spam($text, $file, $split = ':', $regex = false){ 
  2.     $handle = fopen($file, 'rb'); 
  3.     $contents = fread($handle, filesize($file)); 
  4.     fclose($handle); 
  5.     $lines = explode("n", $contents); 
  6. $arr = array(); 
  7. foreach($lines as $line){ 
  8. list($word, $count) = explode($split, $line); 
  9. if($regex) 
  10. $arr[$word] = $count; 
  11. else 
  12. $arr[preg_quote($word)] = $count; 
  13. preg_match_all("~".implode('', array_keys($arr))."~", $text, $matches); 
  14. $temp = array(); 
  15. foreach($matches[0] as $match){ 
  16. if(!in_array($match, $temp)){ 
  17. $temp[$match] = $temp[$match] + 1; 
  18. if($temp[$match] >= $arr[$word]) 
  19. return true; 
  20. return false; 
  21.  
  22. $file = 'spam.txt'; 
  23. $str = 'This string has cat, dog word'; 
  24. if(is_spam($str, $file)) 
  25. echo 'this is spam'; 
  26. else 
  27. echo 'this is not spam'; 
  28.  
  29. ab:3 
  30. dog:3 
  31. cat:2 
  32. monkey:2 

二、随机颜色生成器


  1. function randomColor() { 
  2.     $str = '#'; 
  3.     for($i = 0 ; $i < 6 ; $i++) { 
  4.         $randNum = rand(0 , 15); 
  5.         switch ($randNum) { 
  6.             case 10: $randNum = 'A'; break; 
  7.             case 11: $randNum = 'B'; break; 
  8.             case 12: $randNum = 'C'; break; 
  9.             case 13: $randNum = 'D'; break; 
  10.             case 14: $randNum = 'E'; break; 
  11.             case 15: $randNum = 'F'; break; 
  12.         } 
  13.         $str .= $randNum; 
  14.     } 
  15.     return $str; 
  16. $color = randomColor(); 

三、从网上下载文件


  1. set_time_limit(0); 
  2. // Supports all file types 
  3. // URL Here: 
  4. $url = 'http://somsite.com/some_video.flv'; 
  5. $pi = pathinfo($url); 
  6. $ext = $pi['extension']; 
  7. $name = $pi['filename']; 
  8.  
  9. // create a new cURL resource 
  10. $ch = curl_init(); 
  11.  
  12. // set URL and other appropriate options 
  13. curl_setopt($ch, CURLOPT_URL, $url); 
  14. curl_setopt($ch, CURLOPT_HEADER, false); 
  15. curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); 
  16. curl_setopt($ch, CURLOPT_AUTOREFERER, true); 
  17. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 
  18. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  19.  
  20. // grab URL and pass it to the browser 
  21. $opt = curl_exec($ch); 
  22.  
  23. // close cURL resource, and free up system resources 
  24. curl_close($ch); 
  25.  
  26. $saveFile = $name.'.'.$ext; 
  27. if(preg_match("/[^0-9a-z._-]/i", $saveFile)) 
  28. $saveFile = md5(microtime(true)).'.'.$ext; 
  29.  
  30. $handle = fopen($saveFile, 'wb'); 
  31. fwrite($handle, $opt); 
  32. fclose($handle); 

四、Alexa/Google Page Rank


  1. function page_rank($page, $type = 'alexa'){ 
  2. switch($type){ 
  3. case 'alexa': 
  4. $url = 'http://alexa.com/siteinfo/'; 
  5. $handle = fopen($url.$page, 'r'); 
  6. break; 
  7. case 'google': 
  8. $url = 'http://google.com/search?client=navclient-auto&ch=6-1484155081&features=Rank&q=info:'; 
  9. $handle = fopen($url.'http://'.$page, 'r'); 
  10. break; 
  11. $content = stream_get_contents($handle); 
  12. fclose($handle); 
  13. $content = preg_replace("~(ntss+)~",'', $content); 
  14. switch($type){ 
  15. case 'alexa': 
  16. if(preg_match('~<div class="data (downup)"><img.+?>(.+?) </div>~im',$content,$matches)){ 
  17. return $matches[2]; 
  18. }else{ 
  19. return FALSE; 
  20. break; 
  21. case 'google': 
  22. $rank = explode(':',$content); 
  23. if($rank[2] != '') 
  24. return $rank[2]; 
  25. else 
  26. return FALSE; 
  27. break; 
  28. default: 
  29. return FALSE; 
  30. break; 
  31. // Alexa Page Rank: 
  32. echo 'Alexa Rank: '.page_rank('techug.com'); 
  33. echo ' '; 
  34. // Google Page Rank 
  35. echo 'Google Rank: '.page_rank('techug.com', 'google'); 

五、强制下载文件


  1. $filename = $_GET['file']; //Get the fileid from the URL 
  2. // Query the file ID 
  3. $query = sprintf("SELECT * FROM tableName WHERE id = '%s'",mysql_real_escape_string($filename)); 
  4. $sql = mysql_query($query); 
  5. if(mysql_num_rows($sql) > 0){ 
  6. $row = mysql_fetch_array($sql); 
  7. // Set some headers 
  8. header("Pragma: public"); 
  9. header("Expires: 0"); 
  10. header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
  11. header("Content-Type: application/force-download"); 
  12. header("Content-Type: application/octet-stream"); 
  13. header("Content-Type: application/download"); 
  14. header("Content-Disposition: attachment; filename=".basename($row['FileName']).";"); 
  15. header("Content-Transfer-Encoding: binary"); 
  16. header("Content-Length: ".filesize($row['FileName'])); 
  17.  
  18. @readfile($row['FileName']); 
  19. exit(0); 
  20. }else{ 
  21. header("Location: /"); 
  22. exit; 

六、用Email显示用户的Gravator头像


  1. $gravatar_link = 'http://www.gravatar.com/avatar/' . md5($comment_author_email) . '?s=32'; 
  2. echo '<img src="' . $gravatar_link . '" />'; 

七、用cURL获取RSS订阅数


  1. $ch = curl_init(); 
  2. curl_setopt($ch,CURLOPT_URL,'https://feedburner.google.com/api/awareness/1.0/GetFeedData?id=7qkrmib4r9rscbplq5qgadiiq4'); 
  3. curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); 
  4. curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,2); 
  5. $content = curl_exec($ch); 
  6. $subscribers = get_match('/circulation="(.*)"/isU',$content); 
  7. curl_close($ch); 
  8.  
  9. 八、时间差异计算 
  10.  
  11. function ago($time) 
  12.    $periods = array("second", "minute", "hour", "day", "week", "month", "year", "decade"); 
  13. $lengths = array("60","60","24","7","4.35","12","10"); 
  14.  
  15. $now = time(); 
  16.  
  17. $difference = $now - $time; 
  18. $tense = "ago"; 
  19.  
  20. for($j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++) { 
  21. $difference /= $lengths[$j]; 
  22.  
  23. $difference = round($difference); 
  24.  
  25. if($difference != 1) { 
  26. $periods[$j].= "s"; 
  27.  
  28. return "$difference $periods[$j] 'ago' "; 

九、截取图片


  1. $filename= "test.jpg"; 
  2. list($w, $h, $type, $attr) = getimagesize($filename); 
  3. $src_im = imagecreatefromjpeg($filename); 
  4.  
  5. $src_x = '0'; // begin x 
  6. $src_y = '0'; // begin y 
  7. $src_w = '100'; // width 
  8. $src_h = '100'; // height 
  9. $dst_x = '0'; // destination x 
  10. $dst_y = '0'; // destination y 
  11.  
  12. $dst_im = imagecreatetruecolor($src_w, $src_h); 
  13. $white = imagecolorallocate($dst_im, 255, 255, 255); 
  14. imagefill($dst_im, 0, 0, $white); 
  15.  
  16. imagecopy($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h); 
  17.  
  18. header("Content-type: image/png"); 
  19. imagepng($dst_im); 
  20. imagedestroy($dst_im); 

十、检查网站是否宕机


  1. function Visit($url){ 
  2.        $agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";$ch=curl_init(); 
  3. curl_setopt ($ch, CURLOPT_URL,$url ); 
  4. curl_setopt($ch, CURLOPT_USERAGENT, $agent); 
  5. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
  6. curl_setopt ($ch,CURLOPT_VERBOSE,false); 
  7. curl_setopt($ch, CURLOPT_TIMEOUT, 5); 
  8. curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, FALSE); 
  9. curl_setopt($ch,CURLOPT_SSLVERSION,3); 
  10. curl_setopt($ch,CURLOPT_SSL_VERIFYHOST, FALSE); 
  11. $page=curl_exec($ch); 
  12. //echo curl_error($ch); 
  13. $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
  14. curl_close($ch); 
  15. if($httpcode>=200 && $httpcode<300) return true; 
  16. else return false; 
  17. if (Visit("http://www.google.com")) 
  18. echo "Website OK"."n"; 
  19. else 
  20. echo "Website DOWN"; 

 【责任编辑:wangxueyan TEL:(010)68476606】

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索file
, application
, header
, match
, Content-Type
, get_matches
, php代码样例
curl_setopt
php收藏本站代码、javascript代码样例、html代码样例、ctex 代码样例、组织机构代码 样例,以便于您获取更多的相关知识。

时间: 2024-10-29 13:41:14

10个必须收藏的PHP代码样例的相关文章

PHP开发中常用的十个代码样例_php实例

一.黑名单过滤 function is_spam($text, $file, $split = ':', $regex = false){ $handle = fopen($file, 'rb'); $contents = fread($handle, filesize($file)); fclose($handle); $lines = explode("n", $contents); $arr = array(); foreach($lines as $line){ list($w

c#代码样例-S05GK接口发送短信

问题描述 C#通过HttpWebRequest和HttpWebResponse请求和获取短信接口信息,提交相关短信内容和接收手机号码,获取提交状态.以下代码参考了速达移动(sudas.cn)接口样例.Post.aspx.cs源码:usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.IO;usingSystem.Net;usingSystem.Text;usingSys

值得收藏的10个PHP代码样例(黑名单\下载文件)

一.黑名单过滤  代码如下 复制代码 function is_spam($text, $file, $split = ':', $regex = false){     $handle = fopen($file, 'rb');     $contents = fread($handle, filesize($file));     fclose($handle);     $lines = explode("n", $contents);     $arr = array();   

XPath JAVA用法总结及代码样例

一.基本概念介绍     XPath 是一门在 XML 文档中查找信息的语言, 可用来在 XML 文档中对元素和属性进行遍历.XPath 是 W3C XSLT 标准的主要元素,并且 XQuery 和 XPointer 同时被构建于 XPath 表达之上.因此,对 XPath 的理解是很多高级 XML 应用的基础.     XPath非常类似对数据库操作的SQL语言,或者说JQuery,它可以方便开发者抓起文档中需要的东西.(dom4j也支持xpath    1.节点类型     XPath中有七

SCALA中的抽象类代码样例

package com.hengheng.scala class AbstractClass { } abstract class People { def speak val name : String var age : Int } class Worker extends People { def speak { println("Hello, Worker!!!") } val name = "Rocky" var age = 27 } object Abs

java8 Lambda Expressions(lamba表达式) 官方样例代码

     今天仔细的看了java8 Lambda Expressions(lamba表达式) 官方样例代码,详见:http://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html. 有兴趣的朋友可以看一下.      针对官方样例代码进行了部分整理,详细参见下面的源代码,供有兴趣的朋友学习.      此类从普通实现方式,接口实现方式,匿名类实现方式,lambda表达式实现方式逐步讲解为什么要引入lambda表达式

兼容所有浏览器的设为首页收藏本站js代码

 设为首页 和 收藏本站js代码 兼容IE,chrome,ff,360等 将以下代码放到首页 或者新建js文件   页面调用: <a href="ja vasc ript:void(0);" on click="SetHome(this,'http://www.php2.cc');">设为首页</a> <a href="ja vasc ript:void(0);" on click="AddFavorite

10个简单实用的 jQuery 代码片段

尽管各种 JavaScirpt 框架和库层出不穷,jQuery 仍然是 Web 前端开发中最常用的工具库. 今天,向大家分享我觉得在网站开发中10个简单实用的 jQuery 代码片段. 1.平滑滚动到锚点 // HTML: // <h1 id="anchor">Lorem Ipsum</h1> // <p><a href="#anchor" class="topLink">Back to Top&l

求cloudsim自带的样例以外的测试代码(如自己写的资源调度策略)

问题描述 求cloudsim自带的样例以外的测试代码(如自己写的资源调度策略)求cloudsim自带的样例以外的测试代码(如自己写的资源调度策略)求cloudsim自带的样例以外的测试代码(如自己写的资源调度策略)