基于swoole的echo服务器

服务器端:

serv = new swoole_server('0.0.0.0', 9501);
		//初始化swoole服务
		$this->serv->set(array(
			'worker_num'  => 8,
			'daemonize'   => false, //是否作为守护进程,此配置一般配合log_file使用
			'max_request' => 1000,
			'log_file'    => './swoole.log',
		));

		//设置监听
		$this->serv->on('Start', array($this, 'onStart'));
		$this->serv->on('Connect', array($this, 'onConnect'));
		$this->serv->on("Receive", array($this, 'onReceive'));
		$this->serv->on("Close", array($this, 'onClose'));

		//开启
		$this->serv->start();
	}

	public function onStart($serv) {
		echo "onStart\n";
	}

	public function onConnect($serv, $fd) {
		echo $fd."Client Connect.\n";
	}

	public function onReceive($serv, $fd, $from_id, $data) {
		echo "Get Message From Client {$fd}:{$data}\n";
	}

	public function onClose($serv, $fd) {
		echo "Client Close.\n";
	}
}

$server = new server();

客户端:

client = new swoole_client(SWOOLE_SOCK_TCP, SWOOLE_SOCK_ASYNC);
        $this->client->on('Connect', array($this, 'onConnect'));
        $this->client->on('Receive', array($this, 'onReceive'));
        $this->client->on('Close', array($this, 'onClose'));
        $this->client->on('Error', array($this, 'onError'));
    }

    public function connect() {
        if(!$fp = $this->client->connect("127.0.0.1", 9501 , 1)) {
            echo "Error: {$fp->errMsg}[{$fp->errCode}]\n";
            return;
        }
    }

    //connect之后,会调用onConnect方法
    public function onConnect($cli) {
        fwrite(STDOUT, "Enter Msg:");
        swoole_event_add(STDIN,function(){
            fwrite(STDOUT, "Enter Msg:");
            $msg = trim(fgets(STDIN));
            $this->send($msg);
        });
    }

    public function onClose($cli) {
        echo "Client close connection\n";
    }

    public function onError() {

    }

	public function onReceive($cli, $data) {
		echo "Received: ".$data."\n";
	}

    public function send($data) {
        $this->client->send($data);
    }

    public function isConnected($cli) {
        return $this->client->isConnected();
    }

}

$client = new Client();
$client->connect();


运行:

先运行服务端: php server.php

再运行客户端: php client.php