在线文档教程
PHP
Gearman

GearmanClient::addServer

GearmanClient::addServer

(PECL gearman >= 0.5.0)

GearmanClient :: addServer - 将作业服务器添加到客户端

描述

public bool GearmanClient::addServer ([ string $host = 127.0.0.1 [, int $port = 4730 ]] )

将作业服务器添加到可用于运行任务的服务器列表。没有插座I / O在这里发生; 服务器只是简单地添加到列表中。

参数

host

作业服务器主机名。

port

作业服务器端口。

返回值

成功时返回TRUE或失败时返回FALSE

例子

示例#1添加两个作业服务器

<?php # Create our client object. $gmclient= new GearmanClient( # Add two job servers, the first on the default 4730 port $gmclient->addServer("10.0.0.1"  $gmclient->addServer("10.0.0.2", 7003 ?>