Heim >Backend-Entwicklung >PHP-Tutorial >随机固定长度整数以及 各种服务器请求方法罗列

随机固定长度整数以及 各种服务器请求方法罗列

WBOY
WBOYOriginal
2016-07-25 09:06:45711Durchsuche

随机固定长度整数以及 各种服务器请求方法罗列

  1. 1。随机生成整数函数(生成位数:$pw_length)
  2. public function randk($pw_length)
  3. {
  4. $randpwd = '';
  5. for ($i=0;$i {
  6. $randpwd .= chr(mt_rand(48,57));
  7. }
  8. return $randpwd;
  9. }
  10. 2。请求罗列各种方法
  11. 《方法1.》
  12. $url="http://www.test.com/ssl/...";
  13. $opts = array(
  14. 'http'=>array(
  15. 'timeout' => 25,
  16. 'method' => "GET",
  17. 'header' => "Accept-language: en\r\n" .
  18. "Cookie: foo=bar\r\n",
  19. )
  20. );
  21. $context = stream_context_create($opts);
  22. $xmlstr = file_get_contents($url,false,$context);
  23. $xmlstr = trim($xmlstr);
  24. 《方法2.》
  25. function cuel_get_contents($url,$timeout=1) {
  26. $curlHandle = curl_init();
  27. curl_setopt( $curlHandle , CURLOPT_URL, $url );
  28. curl_setopt( $curlHandle , CURLOPT_RETURNTRANSFER, 1 );
  29. curl_setopt( $curlHandle , CURLOPT_TIMEOUT, $timeout );
  30. $result = curl_exec( $curlHandle );
  31. curl_close( $curlHandle );
  32. return $result;
  33. }
  34. $hx =cuel_get_contents('http://www.test.com');
  35. 《方法3.》
  36. $url="http://www.test.com/ssl/...";
  37. echo "";
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php连接mysql,mssql,oracle Nächster Artikel:PHP 守护进程类