ホームページ  >  記事  >  php教程  >  非常に便利な 10 個の PHP コード スニペット

非常に便利な 10 個の PHP コード スニペット

WBOY
WBOYオリジナル
2016-06-21 08:51:07991ブラウズ

 

1. 送信短信

TextMagic API を使用します。


  1. 		// Include the TextMagic PHP lib  
  2. require('textmagic-sms-api-php/TextMagicAPI.php');  
  3.  
  4. // ユーザー名とパスワードの情報を設定します
  5. $username = 'myusername';  
  6. $password = '私のパスワード';  
  7.  
  8. // TM の新しいインスタンスを作成します
  9. $router = 新しい TextMagicAPI(array(
  10.     「ユーザー名」 => $ユーザー名、
  11.     「パスワード」 => $パスワード
  12. ));  
  13.  
  14. // テキスト メッセージを '999-123-4567' に送信します
  15. $result = $router->send('ウェイクアップ!', array(9991234567), true);  
  16.  
  17. // 結果: 結果は: Array ( [messages] => Array ( [19896128] => 9991234567 ) [sent_text] => Wake up! [parts_count] => 1 )

2. 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')
  6. $ip = '8.8.8.8';
  7. $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)';
  8. $url = 'http://ipinfodb.com/ip_locator.php?ip=' . urlencode($ip);
  9. $ch = curl_init();
  10. $curl_opt = array(
  11. CURLOPT_FOLLOWLOCATION => 1,  
  12.             CURLOPT_HEADER      => 0,  
  13.             CURLOPT_RETURNTRANSFER  => 1,  
  14.             CURLOPT_USERAGENT   => $curlopt_useragent,  
  15.             CURLOPT_URL       => $url,  
  16.             CURLOPT_TIMEOUT         => 1,  
  17.             CURLOPT_REFERER         => 'http://' . $_SERVER['HTTP_HOST'],  
  18.         );  
  19.  
  20.         curl_setopt_array($ch, $curl_opt);  
  21.  
  22.         $content = curl_exec($ch);  
  23.  
  24.         if (!is_null($curl_info)) {  
  25.             $curl_info = curl_getinfo($ch);  
  26.         }  
  27.  
  28.         curl_close($ch);  
  29.  
  30.         if ( preg_match('{
  31. City : ([^<]*)
  32. }i', $content, $regs) )  {  
  33.             $city = $regs[1];  
  34.         }  
  35.         if ( preg_match('{
  36. State/Province : ([^<]*)
  37. }i', $content, $regs) )  {  
  38.             $state = $regs[1];  
  39.         }  
  40.  
  41.         if( $city!='' && $state!='' ){  
  42.           $location = $city . ', ' . $state;  
  43.           return $location;  
  44.         }else{  
  45.           return $default;  
  46.         }  
  47.  
  48.     } 

3. 显示网页的源代码


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

4. 检查服务器是否使用HTTPS


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

5. 显示Facebook粉丝数量


  1. 		function fb_fan_count($facebook_name){  
  2.     // Example: https://graph.facebook.com/digimantra  
  3.     $data = json_decode(file_get_contents("https://graph.facebook.com/".$facebook_name));  
  4.     echo $data->likes;  

6. 检测图片的主要颜色


  1. 		$i = imagecreatefromjpeg("image.jpg");  
  2.  
  3. for ($x=0;$x
  4. for ($y=0;$y
  5. $rgb = imagecolorat($i,$x,$y);
  6. $r = ($rgb >> 16) & 0xFF;  
  7.         $g   = ($rgb >>  & 0xFF;  
  8.         $b   = $rgb & 0xFF;  
  9.  
  10.         $rTotal += $r;  
  11.         $gTotal += $g;  
  12.         $bTotal += $b;  
  13.         $total++;  
  14.     }  
  15. }  
  16.  
  17. $rAverage = round($rTotal/$total);  
  18. $gAverage = round($gTotal/$total);  
  19. $bAverage = round($bTotal/$total); 

7. 获取内存使用信息


  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. // let's remove half of the array
  11. for ($i = 0; $i < 100000; $i++) {
  12. unset($array[$i]);
  13. }
  14. echo "Final: ".memory_get_usage()." bytes \n";
  15. /* prints
  16. Final: 885912 bytes
  17. */
  18. echo "Peak: ".memory_get_peak_usage()." bytes \n";
  19. /* prints
  20. Peak: 13687072 bytes
  21. */

8. 使用 gzcompress() 压缩数据


  1. 		$string =  
  2. "Lorem ipsum dolor sit amet, consectetur
  3. adipiscing elit. Nunc ut elit id mi ultricies
  4. adipiscing. Nulla facilisi. Praesent pulvinar,
  5. sapien vel feugiat vestibulum, nulla dui pretium orci,
  6. non ultricies elit lacus quis ante. Lorem ipsum dolor
  7. sit amet, consectetur adipiscing elit. Aliquam
  8. pretium ullamcorper urna quis iaculis. Etiam ac massa
  9. sed turpis tempor luctus. Curabitur sed nibh eu elit
  10. mollis congue. Praesent ipsum diam, consectetur vitae
  11. ornare a, aliquam a nunc. In id magna pellentesque
  12. tellus posuere adipiscing. Sed non mi metus, at lacinia
  13. augue. Sed magna nisi, ornare in mollis in, mollis
  14. sed nunc. Etiam at justo in leo congue mollis.
  15. Nullam in neque eget metus hendrerit scelerisque
  16. eu non enim. Ut malesuada lacus eu nulla bibendum
  17. id euismod urna sodales. ";
  18. $compressed = gzcompress($string);
  19. echo "Original size: ". strlen($string)."\n";
  20. /* prints
  21. Original size: 800
  22. */
  23. echo "Compressed size: ". strlen($compressed)."\n";
  24. /* prints
  25. Compressed size: 418
  26. */
  27. // getting it back
  28. $original = gzuncompress($compressed);

9. 使用PHP做Whois检查


  1. 		function whois_query($domain) {  
  2. // fix the domain name:
  3. $domain = strtolower(trim($domain));
  4. $domain = preg_replace('/^http:\/\//i', '', $domain);
  5. $domain = preg_replace('/^www\./i', '', $domain);
  6. $domain = explode('/', $domain);
  7. $domain = trim($domain[0]);
  8. // split the TLD from domain name
  9. $_domain = explode('.', $domain);
  10. $lst = count($_domain)-1;
  11. $ext = $_domain[$lst];
  12. // You find resources and lists
  13. // like these on wikipedia:
  14. //
  15. // http://de.wikipedia.org/wiki/Whois
  16. //
  17. $servers = array(
  18. "biz" => "whois.neulevel.biz",  
  19.         "com" => "whois.internic.net",  
  20.         "us" => "whois.nic.us",  
  21.         "coop" => "whois.nic.coop",  
  22.         "info" => "whois.nic.info",  
  23.         "name" => "whois.nic.name",  
  24.         "net" => "whois.internic.net",  
  25.         "gov" => "whois.nic.gov",  
  26.         "edu" => "whois.internic.net",  
  27.         "mil" => "rs.internic.net",  
  28.         "int" => "whois.iana.org",  
  29.         "ac" => "whois.nic.ac",  
  30.         "ae" => "whois.uaenic.ae",  
  31.         "at" => "whois.ripe.net",  
  32.         "au" => "whois.aunic.net",  
  33.         "be" => "whois.dns.be",  
  34.         "bg" => "whois.ripe.net",  
  35.         "br" => "whois.registro.br",  
  36.         "bz" => "whois.belizenic.bz",  
  37.         "ca" => "whois.cira.ca",  
  38.         "cc" => "whois.nic.cc",  
  39.         "ch" => "whois.nic.ch",  
  40.         "cl" => "whois.nic.cl",  
  41.         "cn" => "whois.cnnic.net.cn",  
  42.         "cz" => "whois.nic.cz",  
  43.         "de" => "whois.nic.de",  
  44.         "fr" => "whois.nic.fr"、
  45.         「ふ」 => "whois.nic.hu"、
  46.         「つまり」 => "whois.domainregistry.ie"、
  47.         「イル」 => "whois.isoc.org.il"、
  48.         「で」 => "whois.ncst.ernet.in"、
  49.         「ir」 => "whois.nic.ir"、
  50.         「MC」 => "whois.ripe.net"、
  51.         「に」 => "whois.tonic.to"、
  52.         「テレビ」 => "whois.tv"、
  53.         「る」 => "whois.ripn.net"、
  54.         「組織」 => "whois.pir.org"、
  55.         「エアロ」 => "whois.information.aero"、
  56.         「nl」 => 「whois.domain-registry.nl」
  57.     );  
  58.  
  59.     if (!isset($servers[$ext])){
  60.         die('エラー: 一致するニックサーバーが見つかりません!');  
  61.     }
  62.  
  63.     $nic_server = $servers[$ext];  
  64.  
  65.     $output = '';  
  66.  
  67.     // whois サーバーに接続します:
  68.     if ($conn = fsockopen ($nic_server, 43)) {
  69.         fputs($conn, $domain."rn");  
  70.         while(!feof($conn)) {
  71.             $output .= fgets($conn,128);  
  72.         }
  73.         fclose($conn);  
  74.     }
  75.     else { die('エラー: ' . $nic_server . ' に接続できませんでした!'); }
  76.  
  77.     $output を返します。  
  78. }

10.電子メール送信PHP错误


  1. 		<?php  
  2. // Our custom error handler
  3. function nettuts_error_handler($number, $message, $file, $line, $vars){
  4. $email = "
  5. An error ($number) occurred on line  

  6.         $line and in the file: $file.  
  7.         

     $message 

    ";  
  8.  
  9.     $email .= "
    " . print_r($vars, 1) . "
    ";  
  10.  
  11.     $headers = 'Content-type: text/html; charset=iso-8859-1' . "\r\n";  
  12.  
  13.     // Email the error to someone...  
  14.     error_log($email, 1, 'you@youremail.com', $headers);  
  15.  
  16.     // Make sure that you decide how to respond to errors (on the user's side)  
  17.     // Either echo an error message, or kill the entire project. Up to you...  
  18.     // The code below ensures that we only "die" if the error was more than  
  19.     // just a NOTICE.  
  20.     if ( ($number !== E_NOTICE) && ($number < 2048) ) {  
  21.         die("There was an error. Please try again later.");  
  22.     }  
  23. }  
  24.  
  25. // We should use our custom function to handle errors.  
  26. set_error_handler('nettuts_error_handler');  
  27.  
  28. // Trigger an error... (var doesn't exist)  
  29. echo $somevarthatdoesnotexist; 



声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。