27
18911184380
當前位置:首頁 > 資訊 > 建站知識

[北(běi)京網站制作]PHP二十一段救命代碼

2011-10-21 酷站科技 大(dà)

1. PHP可(kě)閱讀文章(zhāng)随機字符串

  此編碼将建立一個(gè)可(kě)閱讀文章(zhāng)的(de)字符串數組,使其更貼近字典中的(de)英語單詞,好用(yòng)且具備登陸密碼認證作用(yòng)。

  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轉化(huà)成一個(gè)随機字符串

  假如不用(yòng)可(kě)閱讀文章(zhāng)的(de)字符串數組,應用(yòng)此涵數取代,就可(kě)以建立一個(gè)随機字符串,做(zuò)爲客戶的(de)随機密碼等。

  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編号電子郵箱詳細地址

  應用(yòng)此編碼,能夠将一切電子郵箱詳細地址編号爲 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 = '<a href="ma'
  12.     $part2 = 'ilto&#58;'
  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認證郵箱地址

  電子郵箱認證或許是中最常見的(de)網頁頁面表單驗證,此編碼除開認證電子郵箱詳細地址,還(hái)可(kě)以挑選查驗電子郵件域隸屬 DNS 中的(de) MX 紀錄,使電子郵件認證作用(yòng)更爲強勁。

  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消毀文件目錄

  删掉一個(gè)文件目錄,包含它的(de)內容。

  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& nbsp;== '..'
  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分(fēn)析 JSON 數據信息

  與大(dà)部分(fēn)時(shí)興的(de) Web 服務項目如 twitter 根據對(duì)外開放 API 來(lái)給出的(de)數據一樣,它一直可(kě)以了(le)解怎樣分(fēn)析 API 數據信息的(de)各種各樣傳輸文件格式,包含 JSON,XML 這(zhè)些。

  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]; //p rints php 

8. PHP分(fēn)析 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建立系統日志縮略名

  建立客戶友善的(de)系統日志縮略名。

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

10. PHP獲得(de)手機客戶端真正 IP 詳細地址

  該涵數将獲得(de)客戶的(de)真正 IP 詳細地址,就算(suàn)他(tā)應用(yòng)服務器代理(lǐ)。

  1. function getRealIpAddr() 
  2.     if (!emptyempty($_SERVER['HTTP_CLIE NT_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強制壓縮文件下(xià)載

  爲客戶出示強制的(de)壓縮文件下(xià)載作用(yòng)。

  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(),& nbsp;$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找尋2個(gè)字符串數組的(de)相似度

  PHP 出示了(le)一個(gè)非常少應用(yòng)的(de) similar_text 涵數,但此涵數十分(fēn)有效,用(yòng)以較爲2個(gè)字符串數組并回到類似水(shuǐ)平的(de)百分(fēn)數。

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

14. PHP在程序運行中應用(yòng) Gravatar 通(tōng)用(yòng)性頭像圖片

  伴随著(zhe) WordPress 愈來(lái)愈普及化(huà),Gravatar 也(yě)随著(zhe)時(shí)興。因爲 Gravatar 出示了(le)便于應用(yòng)的(de) API,将其列入程序運行也(yě)越來(lái)越十分(fēn)便捷。

  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在标識符中斷點處斷開文本

  說白了(le)斷字 (word break),即一個(gè)英語單詞可(kě)在改行時(shí)斷掉的(de)地區(qū)。這(zhè)一涵數将在斷字處斷開字符串數組。

  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& nbsp;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 字符串數組

  有時(shí)候必須接納一些表格中的(de)網站地址 鍵入,但客戶非常少加上 http:// 字段名,此編碼将爲網站地址加上該字段名。

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

19. PHP将網站地址字符串數組轉化(huà)成超鏈接

  該涵數将 URL 和(hé) E-mail 詳細地址字符串數組變換爲可(kě)點一下(xià)的(de)超鏈接。

  1. function makeClickableLinks($text) { 
  2. $text = eregi_replace('(((f|ht){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調節圖像尺寸

  建立圖象縮列圖必須很多(duō)時間,此編碼将有利于掌握縮列圖的(de)邏輯性。

  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[< span class="func">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. < span> 
  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 要求

大(dà)部分(fēn)的(de) JavaScript 架構如 jquery,Mootools 等,在傳出 Ajax 要求時(shí),都是會推送附加的(de) HTTP_X_REQUESTED_WITH 頭頂部信息内容,頭當她們一個(gè)ajax要求,因而你能在服務端探測到 Ajax 要求。

  1. if(!emptyempty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest'){ 
  2.     //If AJAX Request Then 
  3. }else
來(lái)源于申明(míng):以上内容一部分(fēn)(包括照(zhào)片、文本)來(lái)自互聯網,若有侵權行爲,請立即與本網站聯絡(010-57218159)。
如沒特殊注明(míng),文章(zhāng)均爲酷站科技原創,轉載請注明(míng)來(lái)自39151.html
聯系專業的(de)商務顧問,制定方案,專業設計,一對(duì)一咨詢及其報價詳情
服務熱(rè)線服務熱(rè)線 18911184380
聯系我們 contact us
18911184380
18911184380 — 海澱營業部
18911184380— 昌平營業部
+

酷站科技爲你提供上門/網站策略方案

留下(xià)聯系方式,我們将會在一個(gè)工作日内與你聯系

隐私條款信息保護中,請放心填寫