コード例 #1
0
ファイル: Pinba.php プロジェクト: bankiru/yii-pinba
 /**
  * Set custom hostname instead of the result of gethostname() used by default.
  *
  * @param string $hostName
  * @return Pinba
  */
 public function setHostName($hostName)
 {
     if ($this->enabled && $hostName) {
         pinba_hostname_set($hostName);
     }
     return $this;
 }
コード例 #2
0
ファイル: PinbaClient.php プロジェクト: justthefish/hesper
 public function setHostName($name)
 {
     pinba_hostname_set($name);
     return $this;
 }