91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

常用到的PHP函數代碼段有哪些

發布時間:2021-11-02 11:20:29 來源:億速云 閱讀:115 作者:小新 欄目:編程語言

這篇文章主要介紹常用到的PHP函數代碼段有哪些,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

1. PHP可閱讀隨機字符串

此代碼將創建一個可閱讀的字符串,使其更接近詞典中的單詞,實用且具有密碼驗證功能。

/**************  *@length &ndash; length of random string (must be a multiple of 2)  **************/ function readable_random_string($length = 6){  $conso=array(“b”,”c”,”d”,”f”,”g”,”h”,”j”,”k”,”l”,  “m”,”n”,”p”,”r”,”s”,”t”,”v”,”w”,”x”,”y”,”z”);  $vocal=array(“a”,”e”,”i”,”o”,”u”);  $password=”";  srand ((double)microtime()*1000000);  $max = $length/2;  for($i=1; $i<=$max; $i++)  {  $password.=$conso[rand(0,19)];  $password.=$vocal[rand(0,4)];  }  return $password;  }

2. PHP生成一個隨機字符串

如果不需要可閱讀的字符串,使用此函數替代,即可創建一個隨機字符串,作為用戶的隨機密碼等。

/*************  *@l &ndash; length of random string  */ function generate_rand($l){  $c= “ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789&Prime;;  srand((double)microtime()*1000000);  for($i=0; $i<$l; $i++) {  $rand.= $c[rand()%strlen($c)];  }  return $rand;  }

3. PHP編碼電子郵件地址

使用此代碼,可以將任何電子郵件地址編碼為 html 字符實體,以防止被垃圾郵件程序收集。

function encode_email($email=&rsquo;info@domain.com&rsquo;, $linkText=&rsquo;Contact Us&rsquo;, $attrs =&rsquo;class=”emailencoder”&lsquo; )  {  // remplazar aroba y puntos  $email = str_replace(&lsquo;@&rsquo;, &lsquo;&#64;&rsquo;, $email);  $email = str_replace(&lsquo;.&rsquo;, &lsquo;&#46;&rsquo;, $email);  $email = str_split($email, 5);  $linkText = str_replace(&lsquo;@&rsquo;, &lsquo;&#64;&rsquo;, $linkText);  $linkText = str_replace(&lsquo;.&rsquo;, &lsquo;&#46;&rsquo;, $linkText);  $linkText = str_split($linkText, 5);  $part1 = &lsquo;<a href=”ma&rsquo;;  $part2 = &lsquo;ilto&#58;&rsquo;;  $part3 = &lsquo;” &lsquo;. $attrs .&rsquo; >&rsquo;;  $part4 = &lsquo;</a>&rsquo;;  $encoded = &lsquo;<script type=”text/javascript”>&rsquo;;  $encoded .= “document.write(&lsquo;$part1&prime;);”;  $encoded .= “document.write(&lsquo;$part2&prime;);”;  foreach($email as $e)  {  $encoded .= “document.write(&lsquo;$e&rsquo;);”;  }  $encoded .= “document.write(&lsquo;$part3&prime;);”;  foreach($linkText as $l)  {  $encoded .= “document.write(&lsquo;$l&rsquo;);”;  }  $encoded .= “document.write(&lsquo;$part4&prime;);”;  $encoded .= &lsquo;</script>&rsquo;;  return $encoded;  }

4. PHP驗證郵件地址

電子郵件驗證也許是中最常用的網頁表單驗證,此代碼除了驗證電子郵件地址,也可以選擇檢查郵件域所屬 DNS 中的 MX 記錄,使郵件驗證功能更加強大。

function is_valid_email($email, $test_mx = false)  {  if(eregi(“^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$”, $email))  if($test_mx)  {  list($username, $domain) = split(“@”, $email);  return getmxrr($domain, $mxrecords);  }  else return true;  else return false;  }

5. PHP列出目錄內容

function list_files($dir)  {  if(is_dir($dir))  {  if($handle = opendir($dir))  {  while(($file = readdir($handle)) !== false)  {  if($file != “.” && $file != “..” && $file != “Thumbs.db”)  {  echo &lsquo;<a target=”_blank” href=”&lsquo;.$dir.$file.&rsquo;”>&rsquo;.$file.&rsquo;</a><br>&rsquo;.”\n”;  }  }  closedir($handle);  }  }  }

6. PHP銷毀目錄

刪除一個目錄,包括它的內容。

/*****  *@dir &ndash; Directory to destroy  *@virtual[optional]- whether a virtual directory  */ function destroyDir($dir, $virtual = false)  {  $ds = DIRECTORY_SEPARATOR;  $dir = $virtual ? realpath($dir) : $dir;  $dir = substr($dir, -1) == $ds ? substr($dir, 0, -1) : $dir;  if (is_dir($dir) && $handle = opendir($dir))  {  while ($file = readdir($handle))  {  if ($file == &lsquo;.&rsquo; || $file == &lsquo;..&rsquo;)  {  continue;  }  elseif (is_dir($dir.$ds.$file))  {  destroyDir($dir.$ds.$file);  }  else {  unlink($dir.$ds.$file);  }  }  closedir($handle);  rmdir($dir);  return true;  }  else {  return false;  }  }

7. PHP解析 JSON 數據

與大多數流行的 Web 服務如 twitter 通過開放 API 來提供數據一樣,它總是能夠知道如何解析 API 數據的各種傳送格式,包括 JSON,XML 等等。

$json_string=&rsquo;{“id”:1,”name”:”foo”,”email”:”foo@foobar.com”,”interest”:["wordpress","php"]} &lsquo;;  $obj=json_decode($json_string);  echo $obj->name; //prints foo  echo $obj->interest[1]; //prints php

8. PHP解析 XML 數據

//xml string  $xml_string=”<?xml version=&rsquo;1.0&prime;?>  <users>  <user id=&rsquo;398&prime;>  <name>Foo</name>  <email>foo@bar.com</name>  </user>  <user id=&rsquo;867&prime;>  <name>Foobar</name>  <email>foobar@foo.com</name>  </user>  </users>”;  //load the xml string using simplexml  $xml = simplexml_load_string($xml_string);  //loop through the each node of user  foreach ($xml->user as $user)  {  //access attribute  echo $user['id'], &lsquo; &lsquo;;  //subnodes are accessed by -> operator  echo $user->name, &lsquo; &lsquo;;  echo $user->email, &lsquo;<br />&rsquo;;  }

9. PHP創建日志縮略名

創建用戶友好的日志縮略名。

function create_slug($string){  $slug=preg_replace(&lsquo;/[^A-Za-z0-9-]+/&rsquo;, &lsquo;-&rsquo;, $string);  return $slug;  }

10. PHP獲取客戶端真實 IP 地址

該函數將獲取用戶的真實 IP 地址,即便他使用代理服務器

function getRealIpAddr()  {  if (!emptyempty($_SERVER['HTTP_CLIENT_IP']))  {  $ip=$_SERVER['HTTP_CLIENT_IP'];  }  elseif (!emptyempty($_SERVER['HTTP_X_FORWARDED_FOR']))  //to check ip is pass from proxy  {  $ip=$_SERVER['HTTP_X_FORWARDED_FOR'];  }  else {  $ip=$_SERVER['REMOTE_ADDR'];  }  return $ip;  }

11. PHP強制性文件下載

為用戶提供強制性的文件下載功能。

/********************  *@file &ndash; path to file  */ function force_download($file)  {  if ((isset($file))&&(file_exists($file))) {  header(“Content-length: “.filesize($file));  header(&lsquo;Content-Type: application/octet-stream&rsquo;);  header(&lsquo;Content-Disposition: attachment; filename=”&lsquo; . $file . &lsquo;”&lsquo;);  readfile(“$file”);  } else {  echo “No file selected”;  }  }

以上是“常用到的PHP函數代碼段有哪些”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

钟山县| 滨州市| 沂南县| 九龙城区| 辽阳县| 长乐市| 东乌珠穆沁旗| 砀山县| 彭水| 黔江区| 永和县| 新竹县| 高州市| 磴口县| 新龙县| 宁武县| 高淳县| 盐边县| 福泉市| 盐池县| 外汇| 定兴县| 江阴市| 海门市| 舒城县| 于都县| 社旗县| 绥滨县| 明水县| 迁西县| 高淳县| 辽阳市| 广南县| 绩溪县| 客服| 望城县| 杭州市| 西昌市| 讷河市| 贺州市| 青海省|