再来二十一段救命的PHP代码

   1. PHP可阅读随机字符串

  此代码将创建一个可阅读的字符串,使其更接近词典中的单词,实用且具有密码验证功能。


  1. /************** 
  2. *@length - length of random string (must be a multiple of 2) 
  3. **************/ 
  4. function readable_random_string($length = 6){ 
  5.     $conso=array("b","c","d","f","g","h","j","k","l", 
  6.     "m","n","p","r","s","t","v","w","x","y","z"); 
  7.     $vocal=array("a","e","i","o","u"); 
  8.     $password=""; 
  9.     srand ((double)microtime()*1000000); 
  10.     $max = $length/2; 
  11.     for($i=1; $i<=$max; $i++) 
  12.     { 
  13.     $password.=$conso[rand(0,19)]; 
  14.     $password.=$vocal[rand(0,4)]; 
  15.     } 
  16.     return $password; 

  2. PHP生成一个随机字符串

  如果不需要可阅读的字符串,使用此函数替代,即可创建一个随机字符串,作为用户的随机密码等。


  1. /************* 
  2. *@l - length of random string 
  3. */ 
  4. function generate_rand($l){ 
  5.   $c= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; 
  6.   srand((double)microtime()*1000000); 
  7.   for($i=0; $i<$l; $i++) { 
  8.       $rand.= $c[rand()%strlen($c)]; 
  9.   } 
  10.   return $rand; 

  3. PHP编码电子邮件地址

  使用此代码,可以将任何电子邮件地址编码为 html 字符实体,以防止被垃圾邮件程序收集。


  1. function encode_email($email='info@domain.com', $linkText='Contact Us', $attrs ='class="emailencoder"' ) 
  2.     // remplazar aroba y puntos 
  3.     $email = str_replace('@', '@', $email); 
  4.     $email = str_replace('.', '.', $email); 
  5.     $email = str_split($email, 5);   
  6.  
  7.     $linkText = str_replace('@', '@', $linkText); 
  8.     $linkText = str_replace('.', '.', $linkText); 
  9.     $linkText = str_split($linkText, 5);   
  10.  
  11.     $part1 = '<a href="ma'; 
  12.     $part2 = 'ilto:'; 
  13.     $part3 = '" '. $attrs .' >'; 
  14.     $part4 = '</a>';   
  15.  
  16.     $encoded = '<script type="text/javascript">'; 
  17.     $encoded .= "document.write('$part1');"; 
  18.     $encoded .= "document.write('$part2');"; 
  19.     foreach($email as $e) 
  20.     { 
  21.             $encoded .= "document.write('$e');"; 
  22.     } 
  23.     $encoded .= "document.write('$part3');"; 
  24.     foreach($linkText as $l) 
  25.     { 
  26.             $encoded .= "document.write('$l');"; 
  27.     } 
  28.     $encoded .= "document.write('$part4');"; 
  29.     $encoded .= '</script>';   
  30.  
  31.     return $encoded; 

  4. PHP验证邮件地址

  电子邮件验证也许是中最常用的网页表单验证,此代码除了验证电子邮件地址,也可以选择检查邮件域所属 DNS 中的 MX 记录,使邮件验证功能更加强大。


  1. function is_valid_email($email, $test_mx = false) 
  2.     if(eregi("^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$", $email)) 
  3.         if($test_mx) 
  4.         { 
  5.             list($username, $domain) = split("@", $email); 
  6.             return getmxrr($domain, $mxrecords); 
  7.         } 
  8.         else 
  9.             return true; 
  10.     else 
  11.         return false; 

  5. PHP列出目录内容


  1. function list_files($dir) 
  2.     if(is_dir($dir)) 
  3.     { 
  4.         if($handle = opendir($dir)) 
  5.         { 
  6.             while(($file = readdir($handle)) !== false) 
  7.             { 
  8.                 if($file != "." && $file != ".." && $file != "Thumbs.db") 
  9.                 { 
  10.                     echo '<a target="_blank" href="'.$dir.$file.'">'.$file.'</a><br>'."\n"; 
  11.                 } 
  12.             } 
  13.             closedir($handle); 
  14.         } 
  15.     } 

  6. PHP销毁目录

  删除一个目录,包括它的内容。


  1. /***** 
  2. *@dir - Directory to destroy 
  3. *@virtual[optional]- whether a virtual directory 
  4. */ 
  5. function destroyDir($dir, $virtual = false) 
  6.     $ds = DIRECTORY_SEPARATOR; 
  7.     $dir = $virtual ? realpath($dir) : $dir; 
  8.     $dir = substr($dir, -1) == $ds ? substr($dir, 0, -1) : $dir; 
  9.     if (is_dir($dir) && $handle = opendir($dir)) 
  10.     { 
  11.         while ($file = readdir($handle)) 
  12.         { 
  13.             if ($file == '.'  $file == '..') 
  14.             { 
  15.                 continue; 
  16.             } 
  17.             elseif (is_dir($dir.$ds.$file)) 
  18.             { 
  19.                 destroyDir($dir.$ds.$file); 
  20.             } 
  21.             else 
  22.             { 
  23.                 unlink($dir.$ds.$file); 
  24.             } 
  25.         } 
  26.         closedir($handle); 
  27.         rmdir($dir); 
  28.         return true; 
  29.     } 
  30.     else 
  31.     { 
  32.         return false; 
  33.     } 

  7. PHP解析 JSON 数据

  与大多数流行的 Web 服务如 twitter 通过开放 API 来提供数据一样,它总是能够知道如何解析 API 数据的各种传送格式,包括 JSON,XML 等等。


  1. $json_string='{"id":1,"name":"foo","email":"foo@foobar.com","interest":["wordpress","php"]} '; 
  2. $obj=json_decode($json_string); 
  3. echo $obj->name; //prints foo 
  4. echo $obj->interest[1]; //prints php 

  8. PHP解析 XML 数据


  1. //xml string 
  2. $xml_string="<?xml version='1.0'?> 
  3. <users> 
  4. <user id='398'> 
  5. <name>Foo</name> 
  6. <email>foo@bar.com</name> 
  7. </user> 
  8. <user id='867'> 
  9. <name>Foobar</name> 
  10. <email>foobar@foo.com</name> 
  11. </user> 
  12. </users>";  
  13.  
  14. //load the xml string using simplexml 
  15. $xml = simplexml_load_string($xml_string);  
  16.  
  17. //loop through the each node of user 
  18. foreach ($xml->user as $user) 
  19. //access attribute 
  20. echo $user['id'], ' '; 
  21. //subnodes are accessed by -> operator 
  22. echo $user->name, ' '; 
  23. echo $user->email, '<br />'; 

  9. PHP创建日志缩略名

  创建用户友好的日志缩略名。


  1. function create_slug($string){ 
  2. $slug=preg_replace('/[^A-Za-z0-9-]+/', '-', $string); 
  3. return $slug; 

  10. PHP获取客户端真实 IP 地址

  该函数将获取用户的真实 IP 地址,即便他使用代理服务器。


  1. function getRealIpAddr() 
  2.     if (!emptyempty($_SERVER['HTTP_CLIENT_IP'])) 
  3.     { 
  4.         $ip=$_SERVER['HTTP_CLIENT_IP']; 
  5.     } 
  6.     elseif (!emptyempty($_SERVER['HTTP_X_FORWARDED_FOR'])) 
  7.     //to check ip is pass from proxy 
  8.     { 
  9.         $ip=$_SERVER['HTTP_X_FORWARDED_FOR']; 
  10.     } 
  11.     else 
  12.     { 
  13.         $ip=$_SERVER['REMOTE_ADDR']; 
  14.     } 
  15.     return $ip; 

  11. PHP强制性文件下载

  为用户提供强制性的文件下载功能。


  1. /******************** 
  2. *@file - path to file 
  3. */ 
  4. function force_download($file) 
  5. if ((isset($file))&&(file_exists($file))) { 
  6. header("Content-length: ".filesize($file)); 
  7. header('Content-Type: application/octet-stream'); 
  8. header('Content-Disposition: attachment; filename="' . $file . '"'); 
  9. readfile("$file"); 
  10. } else { 
  11. echo "No file selected"; 

  12. PHP创建标签云


  1. function getCloud( $data = array(), $minFontSize = 12, $maxFontSize = 30 ) 
  2. $minimumCount = min( array_values( $data ) ); 
  3. $maximumCount = max( array_values( $data ) ); 
  4. $spread = $maximumCount - $minimumCount; 
  5. $cloudHTML = ''; 
  6. $cloudTags = array();  
  7.  
  8. $spread == 0 && $spread = 1;  
  9.  
  10. foreach( $data as $tag => $count ) 
  11. $size = $minFontSize + ( $count - $minimumCount ) 
  12. * ( $maxFontSize - $minFontSize ) / $spread; 
  13. $cloudTags[] = '<a style="font-size: ' . floor( $size ) . 'px' 
  14. . '" href="#" title="\'' . $tag . 
  15. '\' returned a count of ' . $count . '">' 
  16. . htmlspecialchars( stripslashes( $tag ) ) . '</a>'; 
  17. }  
  18.  
  19. return join( "\n", $cloudTags ) . "\n"; 
  20. /************************** 
  21. **** Sample usage ***/ 
  22. $arr = Array('Actionscript' => 35, 'Adobe' => 22, 'Array' => 44, 'Background' => 43, 
  23. 'Blur' => 18, 'Canvas' => 33, 'Class' => 15, 'Color Palette' => 11, 'Crop' => 42, 
  24. 'Delimiter' => 13, 'Depth' => 34, 'Design' => 8, 'Encode' => 12, 'Encryption' => 30, 
  25. 'Extract' => 28, 'Filters' => 42); 
  26. echo getCloud($arr, 12, 36); 

  13. PHP寻找两个字符串的相似性

  PHP 提供了一个极少使用的 similar_text 函数,但此函数非常有用,用于比较两个字符串并返回相似程度的百分比。


  1. similar_text($string1, $string2, $percent); 
  2. //$percent will have the percentage of similarity 

  14. PHP在应用程序中使用 Gravatar 通用头像

  随着 WordPress 越来越普及,Gravatar 也随之流行。由于 Gravatar 提供了易于使用的 API,将其纳入应用程序也变得十分方便。


  1. /****************** 
  2. *@email - Email address to show gravatar for 
  3. *@size - size of gravatar 
  4. *@default - URL of default gravatar to use 
  5. *@rating - rating of Gravatar(G, PG, R, X) 
  6. */ 
  7. function show_gravatar($email, $size, $default, $rating) 
  8. echo '<img src="http://www.gravatar.com/avatar.php?gravatar_id='.md5($email). 
  9. '&default='.$default.'&size='.$size.'&rating='.$rating.'" width="'.$size.'px" 
  10. height="'.$size.'px" />'; 

  15. PHP在字符断点处截断文字

  所谓断字 (word break),即一个单词可在转行时断开的地方。这一函数将在断字处截断字符串。


  1. // Original PHP code by Chirp Internet: www.chirp.com.au 
  2. // Please acknowledge use of this code by including this header. 
  3. function myTruncate($string, $limit, $break=".", $pad="...") { 
  4. // return with no change if string is shorter than $limit 
  5. if(strlen($string) <= $limit) 
  6. return $string;  
  7.  
  8. // is $break present between $limit and the end of the string? 
  9. if(false !== ($breakpoint = strpos($string, $break, $limit))) { 
  10. if($breakpoint < strlen($string) - 1) { 
  11. $string = substr($string, 0, $breakpoint) . $pad; 
  12. return $string; 
  13. /***** Example ****/ 
  14. $short_string=myTruncate($long_string, 100, ' '); 

  16. PHP文件 Zip 压缩


  1. /* creates a compressed zip file */ 
  2. function create_zip($files = array(),$destination = '',$overwrite = false) { 
  3. //if the zip file already exists and overwrite is false, return false 
  4. if(file_exists($destination) && !$overwrite) { return false; } 
  5. //vars 
  6. $valid_files = array(); 
  7. //if files were passed in... 
  8. if(is_array($files)) { 
  9. //cycle through each file 
  10. foreach($files as $file) { 
  11. //make sure the file exists 
  12. if(file_exists($file)) { 
  13. $valid_files[] = $file; 
  14. //if we have good files... 
  15. if(count($valid_files)) { 
  16. //create the archive 
  17. $zip = new ZipArchive(); 
  18. if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) { 
  19. return false; 
  20. //add the files 
  21. foreach($valid_files as $file) { 
  22. $zip->addFile($file,$file); 
  23. //debug 
  24. //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;  
  25.  
  26. //close the zip -- done! 
  27. $zip->close();  
  28.  
  29. //check to make sure the file exists 
  30. return file_exists($destination); 
  31. else 
  32. return false; 
  33. /***** Example Usage ***/ 
  34. $files=array('file1.jpg', 'file2.jpg', 'file3.gif'); 
  35. create_zip($files, 'myzipfile.zip', true); 

  17. PHP解压缩 Zip 文件


  1. /********************** 
  2. *@file - path to zip file 
  3. *@destination - destination directory for unzipped files 
  4. */ 
  5. function unzip_file($file, $destination){ 
  6. // create object 
  7. $zip = new ZipArchive() ; 
  8. // open archive 
  9. if ($zip->open($file) !== TRUE) { 
  10. die (’Could not open archive’); 
  11. // extract contents to destination directory 
  12. $zip->extractTo($destination); 
  13. // close archive 
  14. $zip->close(); 
  15. echo 'Archive extracted to directory'; 

  18. PHP为 URL 地址预设 http 字符串

  有时需要接受一些表单中的网址输入,但用户很少添加 http:// 字段,此代码将为网址添加该字段。


  1. if (!preg_match("/^(httpftp):/", $_POST['url'])) { 
  2.    $_POST['url'] = 'http://'.$_POST['url']; 

  19. PHP将网址字符串转换成超级链接

  该函数将 URL 和 E-mail 地址字符串转换为可点击的超级链接。


  1. function makeClickableLinks($text) { 
  2. $text = eregi_replace('(((fht){1}tp://)[-a-zA-Z0-9@:%_+.~#?&//=]+)', 
  3. '<a href="\1">\1</a>', $text); 
  4. $text = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_+.~#?&//=]+)', 
  5. '\1<a href="http://\2">\2</a>', $text); 
  6. $text = eregi_replace('([_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})', 
  7. '<a href="mailto:\1">\1</a>', $text);  
  8.  
  9. return $text; 

  20. PHP调整图像尺寸

  创建图像缩略图需要许多时间,此代码将有助于了解缩略图的逻辑。


  1. /********************** 
  2. *@filename - path to the image 
  3. *@tmpname - temporary path to thumbnail 
  4. *@xmax - max width 
  5. *@ymax - max height 
  6. */ 
  7. function resize_image($filename, $tmpname, $xmax, $ymax) 
  8.     $ext = explode(".", $filename); 
  9.     $ext = $ext[count($ext)-1];   
  10.  
  11.     if($ext == "jpg"  $ext == "jpeg") 
  12.         $im = imagecreatefromjpeg($tmpname); 
  13.     elseif($ext == "png") 
  14.         $im = imagecreatefrompng($tmpname); 
  15.     elseif($ext == "gif") 
  16.         $im = imagecreatefromgif($tmpname);   
  17.  
  18.     $x = imagesx($im); 
  19.     $y = imagesy($im);   
  20.  
  21.     if($x <= $xmax && $y <= $ymax) 
  22.         return $im;   
  23.  
  24.     if($x >= $y) { 
  25.         $newx = $xmax; 
  26.         $newy = $newx * $y / $x; 
  27.     } 
  28.     else { 
  29.         $newy = $ymax; 
  30.         $newx = $x / $y * $newy; 
  31.     }   
  32.  
  33.     $im2 = imagecreatetruecolor($newx, $newy); 
  34.     imagecopyresized($im2, $im, 0, 0, 0, 0, floor($newx), floor($newy), $x, $y); 
  35.     return $im2; 

  21. PHP检测 ajax 请求

  大多数的 JavaScript 框架如 jquery,Mootools 等,在发出 Ajax 请求时,都会发送额外的 HTTP_X_REQUESTED_WITH 头部信息,头当他们一个ajax请求,因此你可以在服务器端侦测到 Ajax 请求。


  1. if(!emptyempty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest'){ 
  2.     //If AJAX Request Then 
  3. }else{ 
  4. //something else 

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索php
, string
, 字符串
, file
, return
, function
, vb spread ...
, chirp 脉冲压缩
, ziparchive
, Spread
,  spread
, gravatar头像
, ZipArchive方法
Gravatar
金再来指标源代码、php代码、php分页代码、php登陆页面完整代码、phpstorm 格式化代码,以便于您获取更多的相关知识。

时间: 2024-11-03 16:40:09

再来二十一段救命的PHP代码的相关文章

java源码-求这段c语言的代码换成java的代码

问题描述 求这段c语言的代码换成java的代码 #include #define P 3.1415927#define toFeet(x) x/12.0#define toMiles(x) x/5280.0int main(){ double diameter;//直径 int revolutions;//转数 double time;//香蕉 double s; int count=1; while(scanf("%lf%d%lf",&diameter,&revolu

vba-请各位看看这段vb.net的代码,是操作word的

问题描述 请各位看看这段vb.net的代码,是操作word的 Public Sub Textbox1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown If e.KeyCode = Keys.Enter Then Dim p As String = InputBox("请输入") Dim WDAPP As Object

这段java for循环代码的结果怎么不对呢?DOS 输出结果为800.0,编译也没有啥问题啊。

问题描述 这段java for循环代码的结果怎么不对呢?DOS 输出结果为800.0,编译也没有啥问题啊. 如题,代码如下: public class Example41_3 { public static void main(String args[]){ float i=0; double sum=0; for(i=1;i<=3;i++); { sum+=8*(Math.pow(10.0,(i-1))); } System.out.println("计算8+88+888+8888+--

java-请教大家一段查找素数的代码

问题描述 请教大家一段查找素数的代码 #include<iostream> #include<cmath> using namespace std; bool Jude(int n) { int i; if(n==2||n==3) return true; else if(n<2) return false; else { for(i=2;i<=sqrt(1.0*n);i++)//这里sqrt(1.0*n)就算了一次, //如果判断条件改为i*i<=n,这里的i*

求一段数据库连接超时的代码

问题描述 求一段数据库连接超时的代码 各位大师,小弟这里求一段代码,要有如下功能:在连接数据库(或者连接池)的时候, 判断是否连接成功,如果在规定的时间内连接失败了,则尝试再次连接. 解决方案 具体代码不打,给思路: 1.限制连接个数,然后当连接满了,就连接不上,自然连接超时 2.整个错误的密码,不推荐,按照你的想法,应该是第一种,因为如果是错误的,重新连接也是错误! 解决方案二: 谢谢你的回答,不过不是我想要的结果,我想要的不是因为连接池满了而连不上,而是因为别的一些原因,所以我想判断如果连接

html-如下一段简单的HTML-CSS代码,为何加了overflow就能实现目的?

问题描述 如下一段简单的HTML-CSS代码,为何加了overflow就能实现目的? 目的:HTML中两块div,右侧固定宽度200px,左边的填满剩下的宽度 要求:左侧的div宽度是随可视区宽度变化而变化的,不能用calc()和CSS预处理语言 HTML: <div class="right"></div> <div class="left"></div> CSS: .left { overflow: hidden;

这段c语言圆周率代码哪有问题?

问题描述 这段c语言圆周率代码哪有问题? 测试输出全部都是4,,,,不知道为啥 图上的这个代码有问题吗计算圆周率"> 解决方案 如果细心看一下你会发现你的for循环的条件是不合理的, 当你输入的e值小于1时,这个for循环只走了一步就结束了, 此时s=1,所以输出4s 肯定就是4啊. 解决方案二: for(i=1;x<=e;i=i+1) 好像没看见有修改x或e的值啊 有点奇怪,有进去循环吗?进去能出来吗? 解决方案三: 第一次进入循环后,x=1/i=1,s=1 第二次循环不满足x&l

二十一世纪最性感的职业:数据科学家

  性感事物方面的权威<哈佛商业评论>宣布,"数据科学家"是二十一世纪最性感的职业.所谓性感,既代表着难以名状的诱惑,又说明了大家都不知道它干的是什么. 不管老板懂不懂数据科学家是干什么的,反正最近几年这个岗位的需求数正在快速攀升,Indeed.com的数据可以为证. 但是其性感在什么地方?什么是数据科学家?他们是科学家吗?还是工程师?程序员?抑或是一个商业决策与创新者的新血统? Indeed.com的数据没有反应出来的一个事实是,尽管这个职业对应的学科在学术界经过长期的酝

Bootstrap &lt;基础二十一&gt;徽章(Badges)

原文:Bootstrap <基础二十一>徽章(Badges) Bootstrap 徽章(Badges).徽章与标签相似,主要的区别在于徽章的边角更加圆滑. 徽章(Badges)主要用于突出显示新的或未读的项.如需使用徽章,只需要把 <span class="badge"> 添加到链接.Bootstrap 导航等这些元素上即可. 下面的实例演示了这点: <!DOCTYPE html> <html> <head> <titl