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

10个超级有用的PHP代码片段果断收藏

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-18 23:55:47 浏览: 评论:0 

PHP是一种HTML内嵌式的语言,是一种在服务器端执行的嵌入HTML文档的脚本语言。在PHP代码库中包含了无数个有用的PHP代码片段,每位开发者都需要不断完善自己的“工具箱”。有了这些代码片段可以为你节省大量的时间,一起来看下。

本文小编将为你奉上10个超级有用的PHP代码片段。

1.查找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. }  
  21.    
  22. The example returns the following:  
  23.    
  24. miles: 2.6025  
  25. feet: 13,741.4350  
  26. yards: 4,580.4783  
  27. kilometers: 4.1884  
  28. meters: 4,188.3894 

2.完善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.  }  
  25. }  

3.清理用户输入

  1. ]*?>.*?@si', // Strip out javascript  
  2.  '@<[\/\!]*?[^<>]*?>@si',  // Strip out HTML tags  
  3.  '@]*?>.*?@siU'// Strip style tags properly  
  4.  '@@'  // Strip multi-line comments  
  5.  );  
  6.    
  7.  $output = preg_replace($search''$input);  
  8.  return $output;  
  9.  }  
  10. ?>  
  11. $val) {  
  12.   $output[$var] = sanitize($val);  
  13.  }  
  14.  }  
  15.  else {  
  16.  if (get_magic_quotes_gpc()) {  
  17.   $input = stripslashes($input);  
  18.  }  
  19.  $input = cleanInput($input);  
  20.  $output = mysql_real_escape_string($input);  
  21.  }  
  22.  return $output;  
  23. }  

4.通过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; } }  

5.设置密码强度

  1. 100){  
  2.  $strength = 100;  
  3.  }  
  4.  return $strength;  
  5. }  
  6.    
  7. var_dump(password_strength("Correct Horse Battery Staple"));  
  8. echo "  
  9. ";  
  10. var_dump(password_strength("Super Monkey Ball"));  
  11. echo "  
  12. ";  
  13. var_dump(password_strength("Tr0ub4dor&3"));  
  14. echo "  
  15. ";  
  16. var_dump(password_strength("abc123"));  
  17. echo "  
  18. ";  
  19. var_dump(password_strength("sweet")); 

6.检测浏览器语言,只提供可用的$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. }  

7.创建数据URL

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

8.创建更加友好的页面标题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))));  
  3. }  

9.终极加密功能

  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;  

10a.Tweeter Feed Runner——使用任意twitter名,可在任意页面上加载用户资源。

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

10b. 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>";  

直接拿来用,10个PHP代码片段,还犹豫什么,果断收藏吧。

Tags: PHP代码片段

分享到: