本文整理汇总了PHP中Server::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Server::__construct方法的具体用法?PHP Server::__construct怎么用?PHP Server::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Server
的用法示例。
在下文中一共展示了Server::__construct方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: AuthenticatedServer
function AuthenticatedServer($ip, $port)
{
parent::__construct($ip, $port);
$this->authenticationFreeMessages = new stdClass;
$this->proxies = array();
$this->passMessage("authenticate"); // we want to allow people to try to grant passes
}
示例2: __construct
/**
* Persistent SOAP service handler constructor
*
* @param object $o
* @param array $soap_options
*/
public function __construct($o, $soap_options = false)
{
$this->wrapped = $o;
if ($soap_options === false) {
parent::__construct($o);
} else {
parent::__construct($o, $soap_options);
}
}
示例3: __construct
public function __construct($channelid)
{
$this->channelid = $channelid;
$sql = "SELECT serverid, name FROM irc_channels WHERE channelid = ";
$sql .= $this->quote($channelid, 'integer');
$q = $this->query($sql);
$row = $q->fetchrow();
$this->serverid = $row[0];
$this->channelname = $row[1];
parent::__construct($this->serverid);
$this->mypath = $this->basepath . "IRC/showchannel.php?channelid={$channelid}";
}
示例4: __construct
/**
* {@inheritdoc}
*/
public function __construct($config)
{
parent::__construct($config);
$query = $this->get('q');
$query = unserialize(base64_decode($query));
$this->uid = $query['uid'];
$this->d = $query['d'];
$this->dts = $query['dts'];
$this->ts = $query['ts'];
$this->path = $query['path'];
$this->hmac = $query['mac'];
}
示例5: __construct
/**
*
* @param array $params
*/
public function __construct($params)
{
parent::__construct();
parent::setParams($params);
}
示例6: __construct
public function __construct($delim = '.', $wait = false)
{
parent::__construct([], false, $wait);
$this->_delim = $delim;
$this->_objects = [];
}
示例7: __construct
/**
* Constructor
*
* @param string addr
* @param int port
* @param int count default 10 number of children to fork
* @param int maxrequests default 1000 maxmimum # of requests per child
*/
public function __construct($addr, $port, $count = 10, $maxrequests = 1000)
{
parent::__construct($addr, $port);
$this->count = $count;
$this->maxrequests = $maxrequests;
}
示例8: SharedServer
function SharedServer($host = 'localhost', $port = 8080)
{
Message::$encoder = new JsonEncoder();
parent::__construct($host, $port);
}
示例9: __construct
/**
* @param string $host
* @param string $user
* @param string $password
*/
public function __construct($host, $user, $password)
{
parent::__construct($host, $user, $password);
$this->state = new NativeState();
}
示例10: PolicyServer
function PolicyServer($ip)
{
parent::__construct($ip, 843);
}
示例11: __construct
/**
* Creates a new instance of a game server object
*
* @param string $address Either an IP address, a DNS name or one of them
* combined with the port number. If a port number is given, e.g.
* 'server.example.com:27016' it will override the second argument.
* @param int $port The port the server is listening on
* @throws SteamCondenserException if an host name cannot be resolved
*/
public function __construct($address, $port = 27015)
{
parent::__construct($address, $port);
$this->rconAuthenticated = false;
}
示例12: __construct
/**
* start the server
*
*/
public function __construct($db)
{
$this->db = $db;
parent::__construct("127.0.0.1", 5000);
}