当前位置: 首页>>代码示例>>PHP>>正文


PHP tools::generateRandomString方法代码示例

本文整理汇总了PHP中tools::generateRandomString方法的典型用法代码示例。如果您正苦于以下问题:PHP tools::generateRandomString方法的具体用法?PHP tools::generateRandomString怎么用?PHP tools::generateRandomString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tools的用法示例。


在下文中一共展示了tools::generateRandomString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($socket, $index, $address)
 {
     // set private variables
     $this->socket = $socket;
     $this->index = $index;
     $this->ip = $address['ip'];
     $this->port = $address['port'];
     // create challenge
     $this->challenge = tools::generateRandomString(10);
     // create session
     $this->session = tools::generateRandomInt(5);
     // send challenge to client
     $response = gamespy::xor_this('\\lc\\1\\challenge\\' . $this->challenge . '\\id\\1') . '\\final\\';
     tools::log('server: ' . '\\lc\\1\\challenge\\' . $this->challenge . '\\id\\1' . '\\final\\');
     socket_write($this->socket, $response);
     tools::log('initializing new client (' . $this->ip . ':' . $this->port . ')');
 }
开发者ID:derkalle4,项目名称:gamespy-statisticsserver,代码行数:17,代码来源:gamestats.php

示例2: gs_getprofile

 /**
  * 
  * @param type $ex
  * @return boolean
  */
 public function gs_getprofile($ex)
 {
     if (isset($ex[array_search('sesskey', $ex) + 1]) and isset($ex[array_search('profileid', $ex) + 1])) {
         $profileID = $ex[array_search('profileid', $ex) + 1];
         $id = $ex[array_search('id', $ex) + 1];
         $query = "SELECT * FROM users WHERE id='" . intval($profileID) . "' LIMIT 0,1";
         $sql = database::query($query);
         if (database::num_rows($sql) == 1) {
             $row = database::fetch_object($sql);
             $response = '\\pi\\' . '\\profileid\\' . $profileID . '\\nick\\' . $row->name . '\\userid\\' . $profileID . '\\email\\' . $row->email . '\\sig\\' . tools::generateRandomString(32) . '\\uniquenick\\' . $row->name . '\\pid\\0' . '\\firstname\\' . '\\lastname\\' . '\\countrycode\\US' . '\\birthday\\16844722' . '\\lon\\0.000000' . '\\lat\\0.000000' . '\\loc\\' . '\\id\\' . $id . '\\final\\';
             tools::log("server: " . $response);
             socket_write($this->socket, $response);
         } else {
             return false;
         }
     }
     return true;
 }
开发者ID:derkalle4,项目名称:gamespy-loginserver,代码行数:23,代码来源:gpcm.php


注:本文中的tools::generateRandomString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。