成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

分享經(jīng)常用到的21個PHP函數(shù)代碼段(下)

開發(fā) 后端
本文介紹的是在我們實(shí)際工作中,經(jīng)常用到的21個函數(shù)代碼段。希望對你有幫助,一起來看。

下面介紹的是,在PHP開發(fā)中,經(jīng)常用到的21個函數(shù)代碼段,當(dāng)我們用到的時候,就可以直接用了。

接上一篇,分享經(jīng)常用到的21個PHP函數(shù)代碼段(上)

12. PHP創(chuàng)建標(biāo)簽云

 

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

 

13. PHP尋找兩個字符串的相似性

PHP 提供了一個極少使用的 similar_text 函數(shù),但此函數(shù)非常有用,用于比較兩個字符串并返回相似程度的百分比。

 

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

 

14. PHP在應(yīng)用程序中使用 Gravatar 通用頭像

隨著 WordPress 越來越普及,Gravatar 也隨之流行。由于 Gravatar 提供了易于使用的 API,將其納入應(yīng)用程序也變得十分方便。

 

  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. {  
  9. echo ‘<img src=”http://www.gravatar.com/avatar.php?gravatar_id=’.md5($email).  
  10. ‘&default=’.$default.’&size=’.$size.’&rating=’.$rating.’” width=”‘.$size.’px”  
  11. height=”‘.$size.’px” />’;  

 

15. PHP在字符斷點(diǎn)處截?cái)辔淖?/strong>

所謂斷字 (word break),即一個單詞可在轉(zhuǎn)行時斷開的地方。這一函數(shù)將在斷字處截?cái)嘧址?/p>

 

  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. // is $break present between $limit and the end of the string?  
  8. if(false !== ($breakpoint = strpos($string$break$limit))) {  
  9. if($breakpoint < strlen($string) – 1) {  
  10. $string = substr($string, 0, $breakpoint) . $pad;  
  11. }  
  12. }  
  13. return $string;  
  14. }  
  15. /***** Example ****/ 
  16. $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. }  
  15. }  
  16. }  
  17. //if we have good files…  
  18. if(count($valid_files)) {  
  19. //create the archive  
  20. $zip = new ZipArchive();  
  21. if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {  
  22. return false;  
  23. }  
  24. //add the files  
  25. foreach($valid_files as $file) {  
  26. $zip->addFile($file,$file);  
  27. }  
  28. //debug  
  29. //echo ‘The zip archive contains ‘,$zip->numFiles,’ files with a status of ‘,$zip->status;  
  30. //close the zip — done!  
  31. $zip->close();  
  32. //check to make sure the file exists  
  33. return file_exists($destination);  
  34. }  
  35. else 
  36. {  
  37. return false;  
  38. }  
  39. }  
  40. /***** Example Usage ***/ 
  41. $files=array(‘file1.jpg’, ‘file2.jpg’, ‘file3.gif’);  
  42. create_zip($files, ‘myzipfile.zip’, true); 

 

#p#

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. }  
  12. // extract contents to destination directory  
  13. $zip->extractTo($destination);  
  14. // close archive  
  15. $zip->close();  
  16. echo ‘Archive extracted to directory’;  

 

18. PHP為 URL 地址預(yù)設(shè) http 字符串

有時需要接受一些表單中的網(wǎng)址輸入,但用戶很少添加 http:// 字段,此代碼將為網(wǎng)址添加該字段。

 

  1. if (!preg_match(“/^(http|ftp):/”, $_POST['url'])) {  
  2. $_POST['url'] = ‘http://’.$_POST['url'];  

 

19. PHP將網(wǎng)址字符串轉(zhuǎn)換成超級鏈接

該函數(shù)將 URL 和 E-mail 地址字符串轉(zhuǎn)換為可點(diǎn)擊的超級鏈接。

 

  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. return $text;  

 

20. PHP調(diào)整圖像尺寸

創(chuàng)建圖像縮略圖需要許多時間,此代碼將有助于了解縮略圖的邏輯。

 

  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. {  
  9. $ext = explode(“.”, $filename);  
  10. $ext = $ext[count($ext)-1];  
  11.  
  12. if($ext == “jpg” || $ext == “jpeg”)  
  13. $im = imagecreatefromjpeg($tmpname);  
  14. elseif($ext == “png”)  
  15. $im = imagecreatefrompng($tmpname);  
  16. elseif($ext == “gif”)  
  17. $im = imagecreatefromgif($tmpname);  
  18.  
  19. $x = imagesx($im);  
  20. $y = imagesy($im);  
  21.  
  22. if($x <= $xmax && $y <= $ymax)  
  23. return $im;  
  24.  
  25. if($x >= $y) {  
  26. $newx = $xmax;  
  27. $newy = $newx * $y / $x;  
  28. }  
  29. else {  
  30. $newy = $ymax;  
  31. $newx = $x / $y * $newy;  
  32. }  
  33.  
  34. $im2 = imagecreatetruecolor($newx$newy);  
  35. imagecopyresized($im2$im, 0, 0, 0, 0, floor($newx), floor($newy), $x$y);  
  36. return $im2;  

 

21. PHP檢測 ajax 請求

大多數(shù)的 JavaScript 框架如 jquery,Mootools 等,在發(fā)出 Ajax 請求時,都會發(fā)送額外的 HTTP_X_REQUESTED_WITH 頭部信息,頭當(dāng)他們一個ajax請求,因此你可以在服務(wù)器端偵測到 Ajax 請求。

 

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

 

到這,21個經(jīng)常用到的PHP函數(shù)代碼段,就大家介紹完了。希望對你有幫助。

【編輯推薦】

  1. php基礎(chǔ) 關(guān)于繼承的使用方法
  2. 介紹生成PHP網(wǎng)站頁面靜態(tài)化的方法
  3. PHP新手 詳細(xì)介紹PHP代碼規(guī)范
  4. PHP中IIS7實(shí)現(xiàn)基本身份驗(yàn)證的方法
  5. 分享PHP網(wǎng)站建設(shè)的流程與步驟
責(zé)任編輯:于鐵 來源: 大家論壇
相關(guān)推薦

2011-07-07 17:24:28

PHP

2012-05-29 13:34:39

2015-10-29 10:30:41

C#程序員實(shí)用代碼

2015-08-19 09:15:11

C#程序員實(shí)用代碼

2009-12-02 20:29:30

PHP常用函數(shù)

2009-05-18 16:59:42

代碼PHP編碼

2011-07-10 00:02:39

PHP

2011-07-14 10:07:19

PHP

2009-12-03 16:54:36

PHP獲取中國IP段

2011-07-11 10:24:09

PHP

2011-02-24 09:41:25

PHP代碼

2019-12-25 15:40:28

內(nèi)存Java虛擬機(jī)

2010-10-08 16:32:59

MySQL語句

2011-01-10 10:57:33

WebPHPJavaScript

2009-12-08 19:24:09

PHP函數(shù)索引

2012-03-28 09:49:55

WEB特效

2021-08-19 08:31:46

云計(jì)算

2009-12-08 14:00:11

PHP函數(shù)microt

2009-12-01 10:50:45

PHP函數(shù)requir

2020-10-14 18:53:14

Python編程語言
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號

主站蜘蛛池模板: 91久操网| 久久久高清 | 日本 欧美 国产 | 日韩黄色免费 | 久久精品一区二区视频 | 999精品视频在线观看 | а_天堂中文最新版地址 | 最新日韩av | 狠狠久久久 | 丝袜美腿av | 精品一区二区三区在线观看国产 | 国产精品精品久久久久久 | 中文字幕电影在线观看 | 精品毛片视频 | 免费一看一级毛片 | 日韩亚洲视频 | 日韩伦理一区二区 | 激情 一区| 日韩三级在线观看 | 国产精品99久久久久久久久 | 亚洲精品久久久一区二区三区 | 国产精品久久亚洲7777 | 欧美高清hd| 国产精品1区2区 | 欧美日韩在线播放 | 精品美女在线观看 | 国产成人av在线 | 精品一区二区三区四区五区 | 人人九九精 | 亚洲精品久久久久久一区二区 | 日韩在线观看中文字幕 | 亚洲欧美日韩久久 | 中文字幕第三页 | 久久91精品国产一区二区三区 | 精品国产亚洲一区二区三区大结局 | 国产精品久久精品 | 亚洲欧美激情国产综合久久久 | 毛色毛片免费看 | 久久综合成人精品亚洲另类欧美 | 第一色在线 | 国产精品久久久久久中文字 |