热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

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

1.PHP可阅读随机字符串此代码将创建一个可阅读的字符串,使其更接近词典中的单词,实用且具有密码验证功能。/***************@length-lengthofrandomstring(mustbeamultipleof2)**************/functionreadable_rand

   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('@''&#64;'$email); 
  4.     $email = str_replace('.''&#46;'$email); 
  5.     $email = str_split($email, 5);   
  6.  
  7.     $linkText = str_replace('@''&#64;'$linkText); 
  8.     $linkText = str_replace('.''&#46;'$linkText); 
  9.     $linkText = str_split($linkText, 5);   
  10.  
  11.     $part1 = '
  12.     $part2 = 'ilto&#58;'
  13.     $part3 = '" '$attrs .' >'
  14.     $part4 = '';   
  15.  
  16.     $encoded = '';   
  17.  
  18.     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 '.$dir.$file.'">'.$file.'
    '
    ."\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="'1.0'?> 
  3.  
  4. '398'
  5. Foo 
  6. foo@bar.com 
  7.  
  8. '867'
  9. Foobar 
  10. foobar@foo.com 
  11.  
  12. ";  
  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, ''

 

 

  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[] = ' . floor$size ) . 'px' 
  14. '" href="#" title="\'' . $tag . 
  15. '\' returned a count of ' . $count . '">' 
  16. . htmlspecialchars( stripslashes$tag ) ) . ''
  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 '$size.'px" 
  9. 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("/^(http|ftp):/"$_POST['url'])) { 
  2.    $_POST['url'] = 'http://'.$_POST['url']; 

 

 

 

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

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

  1. function makeClickableLinks($text) { 
  2. $text = eregi_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_+.~#?&//=]+)'
  3. '\1'$text); 
  4. $text = eregi_replace('([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_+.~#?&//=]+)'
  5. '\1\2'$text); 
  6. $text = eregi_replace('([_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})'
  7. '\1'$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 

 


推荐阅读
  • 作为140字符的开创者,Twitter看似简单却异常复杂。其简洁之处在于仅用140个字符就能实现信息的高效传播,甚至在多次全球性事件中超越传统媒体的速度。然而,为了支持2亿用户的高效使用,其背后的技术架构和系统设计则极为复杂,涉及高并发处理、数据存储和实时传输等多个技术挑战。 ... [详细]
  • 当前,众多初创企业对全栈工程师的需求日益增长,但市场中却存在大量所谓的“伪全栈工程师”,尤其是那些仅掌握了Node.js技能的前端开发人员。本文旨在深入探讨全栈工程师在现代技术生态中的真实角色与价值,澄清对这一角色的误解,并强调真正的全栈工程师应具备全面的技术栈和综合解决问题的能力。 ... [详细]
  • 如何在PHP中实现链接输出与字符串连接的操作技巧 ... [详细]
  • 对于内存仅为512MB、硬盘80GB的老旧设备,部署Ubuntu Server毫无压力。然而,许多平台仅支持CentOS系统,而CentOS默认要求1GB以上内存才能使用图形界面安装。实际上,安装完成后,即使内存低至256MB也能正常运行。此外,通过优化系统配置和减少不必要的服务,可以进一步提升系统性能,确保在资源受限的环境中稳定运行。 ... [详细]
  • 深入解析Web.xml中Servlet与Filter的URL模式匹配机制 ... [详细]
  • 前端图片合成技术_靠谱的前端需要做哪些准备?
    Web前端开发源于传统的互联网,互联网普及让人才需求量居高不下,随着移动互联网的高速发展,移动终端的前端开发也越来越受到重视, ... [详细]
  • 在《PHP应用性能优化实战指南:从理论到实践的全面解析》一文中,作者分享了一次实际的PHP应用优化经验。文章回顾了先前进行的一次优化项目,指出即使系统运行时间较长后出现的各种问题和性能瓶颈,通过采用一些通用的优化策略仍然能够有效解决。文中不仅详细阐述了优化的具体步骤和方法,还结合实例分析了优化前后的性能对比,为读者提供了宝贵的参考和借鉴。 ... [详细]
  • 深入解析Tomcat:开发者的实用指南
    深入解析Tomcat:开发者的实用指南 ... [详细]
  • 如何在Java中高效构建WebService
    本文介绍了如何利用XFire框架在Java中高效构建WebService。XFire是一个轻量级、高性能的Java SOAP框架,能够简化WebService的开发流程。通过结合MyEclipse集成开发环境,开发者可以更便捷地进行项目配置和代码编写,从而提高开发效率。此外,文章还详细探讨了XFire的关键特性和最佳实践,为读者提供了实用的参考。 ... [详细]
  • 在Spring框架中,基于Schema的异常通知与环绕通知的实现方法具有重要的实践价值。首先,对于异常通知,需要创建一个实现ThrowsAdvice接口的通知类。尽管ThrowsAdvice接口本身不包含任何方法,但开发者需自定义方法来处理异常情况。此外,环绕通知则通过实现MethodInterceptor接口来实现,允许在方法调用前后执行特定逻辑,从而增强功能或进行必要的控制。这两种通知机制的结合使用,能够有效提升应用程序的健壮性和灵活性。 ... [详细]
  • SQLmap自动化注入工具命令详解(第28-29天 实战演练)
    SQL注入工具如SQLMap等在网络安全测试中广泛应用。SQLMap是一款开源的自动化SQL注入工具,支持12种不同的数据库,具体支持的数据库类型可在其插件目录中查看。作为当前最强大的注入工具之一,SQLMap在实际应用中具有极高的效率和准确性。 ... [详细]
  • 如何利用Apache与Nginx高效实现动静态内容分离
    如何利用Apache与Nginx高效实现动静态内容分离 ... [详细]
  • 探索JavaScript倒计时功能的三种高效实现方法及代码示例 ... [详细]
  • 1、DashAPI文档Dash是一个API文档浏览器,使用户可以使用离线功能即时搜索无数API。程序员使用Dash可访问iOS,MacOS, ... [详细]
  • CentOs 7.3中搭建RabbitMQ 3.6单机多实例服务的步骤与使用
    CentOs7.3中搭建RabbitMQ3.6单机多实例服务的步骤与使用-RabbitMQ简介RabbitMQ是一个开源的AMQP实现,服务器端用Erlang语言编写,支持多种客户 ... [详细]
author-avatar
batman@zhou
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有