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


PHP Server::__construct方法代码示例

本文整理汇总了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
		}
开发者ID:seanhess,项目名称:php-light-socket-server,代码行数:8,代码来源:AuthenticatedServer.php

示例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);
     }
 }
开发者ID:kenshaw,项目名称:nanoserv,代码行数:15,代码来源:PersistentServer.php

示例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}";
 }
开发者ID:nooper,项目名称:nlogview,代码行数:12,代码来源:Channel.php

示例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'];
 }
开发者ID:n8b,项目名称:VMN,代码行数:15,代码来源:IconServer.php

示例5: __construct

 /**
  *
  * @param array $params
  */
 public function __construct($params)
 {
     parent::__construct();
     parent::setParams($params);
 }
开发者ID:mlmontes07,项目名称:tileserver-php,代码行数:9,代码来源:tileserver.php

示例6: __construct

 public function __construct($delim = '.', $wait = false)
 {
     parent::__construct([], false, $wait);
     $this->_delim = $delim;
     $this->_objects = [];
 }
开发者ID:kissifrot,项目名称:php-ixr,代码行数:6,代码来源:ClassServer.php

示例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;
 }
开发者ID:Gamepay,项目名称:xp-framework,代码行数:14,代码来源:PreforkingServer.class.php

示例8: SharedServer

 function SharedServer($host = 'localhost', $port = 8080)
 {
     Message::$encoder = new JsonEncoder();
     parent::__construct($host, $port);
 }
开发者ID:seanhess,项目名称:shared-model-server,代码行数:5,代码来源:SharedServer.php

示例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();
 }
开发者ID:isklv,项目名称:smb-bundle,代码行数:10,代码来源:NativeServer.php

示例10: PolicyServer

	function PolicyServer($ip)
	{                 
		parent::__construct($ip, 843);
	}    
开发者ID:seanhess,项目名称:php-light-socket-server,代码行数:4,代码来源:PolicyServer.php

示例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;
 }
开发者ID:heartless-gaming,项目名称:game-server-status,代码行数:14,代码来源:GameServer.php

示例12: __construct

 /**
  * start the server
  * 
  */
 public function __construct($db)
 {
     $this->db = $db;
     parent::__construct("127.0.0.1", 5000);
 }
开发者ID:arielZusman,项目名称:www.chat.io,代码行数:9,代码来源:ChatApp.php


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