当前位置:首页 > PHP教程 > php应用 > 列表

19个超实用的PHP代码片段

发布:smiling 来源: PHP粉丝网  添加日期:2020-10-28 10:57:41 浏览: 评论:0 

每位程序员和开发者都喜欢讨论他们最爱的代码片段,尤其是当PHP开发者花费数个小时为网页编码或创建应用时,他们更知道这些代码的重要性。为了节约编码时间,小编收集了一些较为实用的代码片段,帮助开发者提高工作效率。

1) Whois query using PHP ——利用PHP获取Whois请求

利用这段代码,在特定的域名里可获得whois信息。把域名名称作为参数,并显示所有域名的相关信息,代码如下:

  1. function whois_query($domain) {   
  2.  
  3.     // fix the domain name:   
  4.     $domain = strtolower(trim($domain));   
  5.     $domain = preg_replace('/^http:\/\//i'''$domain);   
  6.     $domain = preg_replace('/^www\./i'''$domain);   
  7.     $domain = explode('/'$domain);   
  8.     $domain = trim($domain[0]);   
  9.  
  10.     // split the TLD from domain name   
  11.     $_domain = explode('.'$domain);   
  12.     $lst = count($_domain)-1;   
  13.     $ext = $_domain[$lst];   
  14.  
  15.     // You find resources and lists    
  16.     // like these on wikipedia:    
  17.     //   
  18.     // <a href="http://de.wikipedia.org/wiki/Whois">http://de.wikipedia.org/wiki/Whois</a>   
  19.     //   
  20.     $servers = array(   
  21.         "biz" => "whois.neulevel.biz",   
  22.         "com" => "whois.internic.net",   
  23.         "us" => "whois.nic.us",   
  24.         "coop" => "whois.nic.coop",   
  25.         "info" => "whois.nic.info",   
  26.         "name" => "whois.nic.name",   
  27.         "net" => "whois.internic.net",   
  28.         "gov" => "whois.nic.gov",   
  29.         "edu" => "whois.internic.net",   
  30.         "mil" => "rs.internic.net",   
  31.         "int" => "whois.iana.org",   
  32.         "ac" => "whois.nic.ac",   
  33.         "ae" => "whois.uaenic.ae",   
  34.         "at" => "whois.ripe.net",   
  35.         "au" => "whois.aunic.net",   
  36.         "be" => "whois.dns.be",   
  37.         "bg" => "whois.ripe.net",   
  38.         "br" => "whois.registro.br",   
  39.         "bz" => "whois.belizenic.bz",   
  40.         "ca" => "whois.cira.ca",   
  41.         "cc" => "whois.nic.cc",   
  42.         "ch" => "whois.nic.ch",   
  43.         "cl" => "whois.nic.cl",   
  44.         "cn" => "whois.cnnic.net.cn",   
  45.         "cz" => "whois.nic.cz",   
  46.         "de" => "whois.nic.de",   
  47.         "fr" => "whois.nic.fr",   
  48.         "hu" => "whois.nic.hu",   
  49.         "ie" => "whois.domainregistry.ie",   
  50.         "il" => "whois.isoc.org.il",   
  51.         "in" => "whois.ncst.ernet.in",   
  52.         "ir" => "whois.nic.ir",   
  53.         "mc" => "whois.ripe.net",   
  54.         "to" => "whois.tonic.to",   
  55.         "tv" => "whois.tv",   
  56.         "ru" => "whois.ripn.net",   
  57.         "org" => "whois.pir.org",   
  58.         "aero" => "whois.information.aero",   
  59.         "nl" => "whois.domain-registry.nl"   
  60.     );   
  61.  
  62.     if (!isset($servers[$ext])){   
  63.         die('Error: No matching nic server found!');   
  64.     }   
  65.  
  66.     $nic_server = $servers[$ext];   
  67.  
  68.     $output = '';   
  69.  
  70.     // connect to whois server:   
  71.     if ($conn = fsockopen ($nic_server, 43)) {   
  72.         fputs($conn$domain."\r\n");   
  73.         while(!feof($conn)) {   
  74.             $output .= fgets($conn,128);   
  75.         }   
  76.         fclose($conn);   
  77.     }   
  78.     else { die('Error: Could not connect to ' . $nic_server . '!'); }   
  79.  
  80.     return $output;   
  81. }   

2) Text messaging with PHP using the TextMagic API ——使用TextMagic API 获取PHP Test信息

TextMagic引入强大的核心API,可轻松将SMS发送到手机,该API是需要付费,代码如下:

  1. the TextMagic PHP lib   
  2. require('textmagic-sms-api-php/TextMagicAPI.php');   
  3.  
  4. // Set the username and password information   
  5. $username = 'myusername';   
  6. $password = 'mypassword';   
  7.  
  8. // Create a new instance of TM   
  9. $router = new TextMagicAPI(array(   
  10.     'username' => $username,   
  11.     'password' => $password   
  12. ));   
  13.  
  14. // Send a text message to '999-123-4567'   
  15. $result = $router->send('Wake up!'array(9991234567), true);   
  16.  
  17. // result:  Result is: Array ( [messages] => Array ( [19896128] => 9991234567 ) [sent_text] => Wake up! [parts_count] => 1 )   

3) Get info about your memory usage——获取内存使用率

这段代码帮助你获取内存使用率,代码如下:

  1. echo "Initial: ".memory_get_usage()." bytes \n";   
  2. /* prints  
  3. Initial: 361400 bytes  
  4. */   
  5.  
  6. // let's use up some memory   
  7. for ($i = 0; $i < 100000; $i++) {   
  8.     $array []= md5($i);   
  9. }   
  10.  
  11. // let's remove half of the array   
  12. for ($i = 0; $i < 100000; $i++) {   
  13.     unset($array[$i]);   
  14. }   
  15.  
  16. echo "Final: ".memory_get_usage()." bytes \n";   
  17. /* prints  
  18. Final: 885912 bytes  
  19. */   
  20.  
  21. echo "Peak: ".memory_get_peak_usage()." bytes \n";   
  22. /* prints  
  23. Peak: 13687072 bytes  
  24. */ 

4) Display source code of any webpage——查看任意网页源代码

如果你想查看网页源代码,那么只需更改第二行的URL,源代码就会在网页上显示出,代码如下:

  1. <?php // display source code $lines = file('http://google.com/'); foreach ($lines as $line_num => $line) {    
  2.     // loop thru each line and prepend line numbers   
  3.     echo "Line #{$line_num} : " . htmlspecialchars($line) . "   
  4. \n";   

5) Create data uri's——创建数据uri

通过使用此代码,你可以创建数据Uri,这对在HTML/CSS中嵌入图片非常有用,可帮助节省HTTP请求,代码如下:

  1. function data_uri($file$mime) {   
  2.   $contents=file_get_contents($file);   
  3.   $base64=base64_encode($contents);   
  4.   echo "data:$mime;base64,$base64";   

6) Detect location by IP——通过IP检索出地理位置

这段代码帮助你查找特定的IP,只需在功能参数上输入IP,就可检测出位置,代码如下:

  1. function detect_city($ip) {   
  2.  
  3.         $default = 'UNKNOWN';   
  4.  
  5.         if (!is_string($ip) || strlen($ip) < 1 || $ip == '127.0.0.1' || $ip == 'localhost')             $ip = '8.8.8.8';         $curlopt_useragent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)';                  $url = 'http://ipinfodb.com/ip_locator.php?ip=' . urlencode($ip);         $ch = curl_init();                  $curl_opt = array(             CURLOPT_FOLLOWLOCATION  => 1,   
  6.             CURLOPT_HEADER      => 0,   
  7.             CURLOPT_RETURNTRANSFER  => 1,   
  8.             CURLOPT_USERAGENT   => $curlopt_useragent,   
  9.             CURLOPT_URL       => $url,   
  10.             CURLOPT_TIMEOUT         => 1,   
  11.             CURLOPT_REFERER         => 'http://' . $_SERVER['HTTP_HOST'],   
  12.         );   
  13.  
  14.         curl_setopt_array($ch$curl_opt);   
  15.  
  16.         $content = curl_exec($ch);   
  17.  
  18.         if (!is_null($curl_info)) {   
  19.             $curl_info = curl_getinfo($ch);   
  20.         }   
  21.  
  22.         curl_close($ch);   
  23.  
  24.         if ( preg_match('{   
  25. City : ([^<]*)   
  26. }i', $content$regs) ) { $city = $regs[1]; } if ( preg_match(‘{   
  27.  
  28. State/Province : ([^<]*)   
  29.  
  30. }i', $content$regs) ) { $state = $regs[1]; } if$city!=” && $state!=” ){ $location = $city . ‘, ‘ . $statereturn $location; }elsereturn $default; } }   

7) Detect browser language——查看浏览器语言

检测浏览器使用的代码脚本语言,代码如下:

  1. function get_client_language($availableLanguages$default='en'){   
  2.     if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {   
  3.         $langs=explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);   
  4.  
  5.         foreach ($langs as $value){   
  6.             $choice=substr($value,0,2);   
  7.             if(in_array($choice$availableLanguages)){   
  8.                 return $choice;   
  9.             }   
  10.         }   
  11.     }    
  12.     return $default;   

8) Check if server is HTTPS——检测服务器是否是HTTPS,代码如下:

  1. if ($_SERVER['HTTPS'] != "on") {    
  2.     echo "This is not HTTPS";   
  3. }else{   
  4.     echo "This is HTTPS";   

9) Generate CSV file from a PHP array——在PHP数组中生成.csv 文件,代码如下:

  1. function generateCsv($data$delimiter = ','$enclosure = '"') {   
  2.    $handle = fopen('php://temp''r+');   
  3.    foreach ($data as $line) {   
  4.            fputcsv($handle$line$delimiter$enclosure);   
  5.    }   
  6.    rewind($handle);   
  7.    while (!feof($handle)) {   
  8.            $contents .= fread($handle, 8192);   
  9.    }   
  10.    fclose($handle);   
  11.    return $contents;   

10.查找Longitudes与Latitudes之间的距离,代码如下:

  1. function getDistanceBetweenPointsNew($latitude1$longitude1$latitude2$longitude2) {   
  2.     $theta = $longitude1 - $longitude2;   
  3.     $miles = (sin(deg2rad($latitude1)) * sin(deg2rad($latitude2))) + (cos(deg2rad($latitude1)) * cos(deg2rad($latitude2)) * cos(deg2rad($theta)));   
  4.     $miles = acos($miles);   
  5.     $miles = rad2deg($miles);   
  6.     $miles = $miles * 60 * 1.1515;   
  7.     $feet = $miles * 5280;   
  8.     $yards = $feet / 3;   
  9.     $kilometers = $miles * 1.609344;   
  10.     $meters = $kilometers * 1000;   
  11.     return compact('miles','feet','yards','kilometers','meters');    
  12. }   
  13.  
  14. $point1 = array('lat' => 40.770623, 'long' => -73.964367);   
  15. $point2 = array('lat' => 40.758224, 'long' => -73.917404);   
  16. $distance = getDistanceBetweenPointsNew($point1['lat'], $point1['long'], $point2['lat'], $point2['long']);   
  17. foreach ($distance as $unit => $value) {   
  18.     echo $unit.': '.number_format($value,4).'   
  19. ';   
  20. }  

The example returns the following:

  1. miles: 2.6025   
  2. feet: 13,741.4350   
  3. yards: 4,580.4783   
  4. kilometers: 4.1884   
  5. meters: 4,188.3894 

11.完善cURL功能,代码如下:

  1. function xcurl($url,$ref=null,$post=array(),$ua="Mozilla/5.0 (X11; Linux x86_64; rv:2.2a1pre) Gecko/20110324 Firefox/4.2a1pre",$print=false) {   
  2.     $ch = curl_init();   
  3.     curl_setopt($ch, CURLOPT_AUTOREFERER, true);   
  4.     if(!emptyempty($ref)) {   
  5.         curl_setopt($ch, CURLOPT_REFERER, $ref);   
  6.     }   
  7.     curl_setopt($ch, CURLOPT_URL, $url);   
  8.     curl_setopt($ch, CURLOPT_HEADER, 0);   
  9.     curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);   
  10.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);   
  11.     if(!emptyempty($ua)) {   
  12.         curl_setopt($ch, CURLOPT_USERAGENT, $ua);   
  13.     }   
  14.     if(count($post) > 0){   
  15.         curl_setopt($ch, CURLOPT_POST, 1);   
  16.         curl_setopt($ch, CURLOPT_POSTFIELDS, $post);       
  17.     }   
  18.     $output = curl_exec($ch);   
  19.     curl_close($ch);   
  20.     if($print) {   
  21.         print($output);   
  22.     } else {   
  23.         return $output;   
  24.     }   

12.清理用户输入,代码如下:

  1. <?php 
  2. function cleanInput($input) { 
  3.  
  4.   $search = array
  5.     '@<script[^>]*?>.*?</script>@si',   // Strip out javascript 
  6.     '@<[\/\!]*?[^<>]*?>@si',            // Strip out HTML tags 
  7.     '@<style[^>]*?>.*?</style>@siU',    // Strip style tags properly 
  8.     '@<![\s\S]*?--[ \t\n\r]*>@'         // Strip multi-line comments 
  9.   ); 
  10.  
  11.     $output = preg_replace($search''$input); 
  12.     return $output
  13.   } 
  14. ?> 
  15. <?php 
  16. function sanitize($input) { 
  17.     if (is_array($input)) { 
  18.         foreach($input as $var=>$val) { 
  19.             $output[$var] = sanitize($val); 
  20.         } 
  21.     } 
  22.     else { 
  23.         if (get_magic_quotes_gpc()) { 
  24.             $input = stripslashes($input); 
  25.         } 
  26.         $input  = cleanInput($input); 
  27.         $output = mysql_real_escape_string($input); 
  28.     } 
  29.     return $output
  30. ?> 

13.通过IP(城市、国家)检测地理位置,代码如下:

  1. function detect_city($ip) {   
  2.  
  3.         $default = 'Hollywood, CA';   
  4.  
  5.         if (!is_string($ip) || strlen($ip) < 1 || $ip == '127.0.0.1' || $ip == 'localhost')             $ip = '8.8.8.8';           $curlopt_useragent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)';           $url = 'http://ipinfodb.com/ip_locator.php?ip=' . urlencode($ip);         $ch = curl_init();           $curl_opt = array(             CURLOPT_FOLLOWLOCATION  => 1,   
  6.             CURLOPT_HEADER      => 0,   
  7.             CURLOPT_RETURNTRANSFER  => 1,   
  8.             CURLOPT_USERAGENT   => $curlopt_useragent,   
  9.             CURLOPT_URL       => $url,   
  10.             CURLOPT_TIMEOUT         => 1,   
  11.             CURLOPT_REFERER         => 'http://' . $_SERVER['HTTP_HOST'],   
  12.         );   
  13.  
  14.         curl_setopt_array($ch$curl_opt);   
  15.  
  16.         $content = curl_exec($ch);   
  17.  
  18.         if (!is_null($curl_info)) {   
  19.             $curl_info = curl_getinfo($ch);   
  20.         }   
  21.  
  22.         curl_close($ch);   
  23.  
  24.         if ( preg_match('{   
  25.  
  26.        
  27. City : ([^<]*)   
  28. }i', $content, $regs) ) { $city = $regs[1]; } if ( preg_match('{   
  29.  
  30. State/Province : ([^<]*)   
  31.  
  32. }i', $content, $regs) ) { $state = $regs[1]; } if( $city!='' && $state!='' ){ $location = $city . ', ' . $statereturn $location; }elsereturn $default; } }   

14.设置密码强度,代码如下:

  1. function password_strength($string){  
  2.     $h    = 0;  
  3.     $size = strlen($string);  
  4.     foreach(count_chars($string, 1) as $v){  
  5.         $p = $v / $size;  
  6.         $h -= $p * log($p) / log(2);  
  7.     }  
  8.     $strength = ($h / 4) * 100;  
  9.     if($strength > 100){  
  10.         $strength = 100;  
  11.     }  
  12.     return $strength;  
  13. }  
  14.  
  15. var_dump(password_strength("Correct Horse Battery Staple"));  
  16. echo "<br>";  
  17. var_dump(password_strength("Super Monkey Ball"));  
  18. echo "<br>";  
  19. var_dump(password_strength("Tr0ub4dor&3"));  
  20. echo "<br>";  
  21. var_dump(password_strength("abc123"));  
  22. echo "<br>";  
  23. var_dump(password_strength("sweet")); 

15.检测浏览器语言,只提供可用的$availableLanguages作为数组(‘en', ‘de', ‘es'),代码如下:

  1. function get_client_language($availableLanguages$default='en'){   
  2.  
  3.     if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {   
  4.  
  5.         $langs=explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);   
  6.  
  7.         //start going through each one   
  8.         foreach ($langs as $value){   
  9.  
  10.             $choice=substr($value,0,2);   
  11.             if(in_array($choice$availableLanguages)){   
  12.                 return $choice;   
  13.  
  14.             }   
  15.  
  16.         }   
  17.     }    
  18.     return $default;   
  19. }  

16.创建数据URL,代码如下:

  1. function data_uri($file$mime) {   
  2.   $contents=file_get_contents($file);   
  3.   $base64=base64_encode($contents);   
  4.   echo "data:$mime;base64,$base64";   

17.创建更加友好的页面标题SEO URL

输入示例:$title = “This foo's bar is rockin' cool!”; echo makeseoname($title); //RETURNS: //this-foos-bar-is-rockin-cool

代码如下:

  1. function make_seo_name($title) {   
  2.     return preg_replace('/[^a-z0-9_-]/i'''strtolower(str_replace(' ''-', trim($title))));   

18.终极加密功能,代码如下:

  1. // f(ucking) u(ncrackable) e(ncryption) function by BlackHatDBL (www.phpfensi.com)   
  2. function fue($hash,$times) {   
  3.     // Execute the encryption(s) as many times as the user wants   
  4.     for($i=$times;$i>0;$i--) {   
  5.         // Encode with base64...   
  6.         $hash=base64_encode($hash);   
  7.         // and md5...   
  8.         $hash=md5($hash);   
  9.         // sha1...   
  10.         $hash=sha1($hash);   
  11.         // sha256... (one more)   
  12.         $hash=hash("sha256"$hash);   
  13.         // sha512   
  14.         $hash=hash("sha512"$hash);   
  15.  
  16.     }   
  17.     // Finaly, when done, return the value   
  18.     return $hash;   
  19. }  

19a.Tweeter Feed Runner——使用任意twitter名,可在任意页面上加载用户资源,代码如下:

  1. public function loadTimeline($user$max = 20){    
  2.         $this->twitURL .= 'statuses/user_timeline.xml?screen_name='.$user.'&count='.$max;    
  3.         $ch        = curl_init();    
  4.         curl_setopt($ch, CURLOPT_URL, $this->twitURL);    
  5.         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);    
  6.         $this->xml = curl_exec($ch);    
  7.         return $this;    
  8.     }    
  9.     public function getTweets(){    
  10.         $this->twitterArr = $this->getTimelineArray();    
  11.         $tweets = array();    
  12.         foreach($this->twitterArr->status as $status){    
  13.             $tweets[$status->created_at->__toString()] = $status->text->__toString();    
  14.         }    
  15.         return $tweets;    
  16.     }    
  17.     public function getTimelineArray(){    
  18.         return simplexml_load_string($this->xml);    
  19.     }    
  20.     public function formatTweet($tweet){    
  21.         $tweet = preg_replace("/(http(.+?))( |$)/","$1$3"$tweet);    
  22.         $tweet = preg_replace("/#(.+?)(\h|\W|$)/""#$1$2"$tweet);    
  23.         $tweet = preg_replace("/@(.+?)(\h|\W|$)/""@$1$2"$tweet);    
  24.         return $tweet;    
  25.     } 

19b. Tweeter Feed Runner——用于在主题中创建文件,比如:example.php,代码如下:

  1. loadTimeline("phpsnips")->getTweets();    
  2. foreach($feed as $time => $message){    
  3.     echo "<div class='tweet'>".$twitter->formatTweet($message)."<br />At: ".$time."</div>";    

Tags: PHP实用代码片段

分享到: