ddxiami

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 2872|回复: 1

基础的server和client范例

[复制链接]
发表于 2018-3-8 16:26:15 | 显示全部楼层 |阅读模式
##Server端

<?php  
//CLI模式  /usr/local/php/bin/php /data/www/www.54xinren.com/swooleTestS.php
class Server  
{  
    private $serv;  

    public function __construct()  
    {  
        $this->serv = new swoole_server("0.0.0.0", 9501);  
        $this->serv->set(array(  
            'worker_num' => 1, //一般设置为服务器CPU数的1-4倍  
            'daemonize' => 1, //以守护进程执行  
            'max_request' => 10000,  
            'dispatch_mode' => 2,  
            'task_worker_num' => 8, //task进程的数量  
            "task_ipc_mode " => 3, //使用消息队列通信,并设置为争抢模式  
            //"log_file" => "log/taskqueueu.log" ,//日志  
        ));  
        $this->serv->on('Receive', array($this, 'onReceive'));  
        // bind callback  
        $this->serv->on('Task', array($this, 'onTask'));  
        $this->serv->on('Finish', array($this, 'onFinish'));  
        $this->serv->start();  
    }  

    public function onReceive(swoole_server $serv, $fd, $from_id, $data)  
    {  
        //echo "Get Message From Client {$fd}:{$data}\n";  
        // send a task to task worker.  
        $serv->task($data);  
    }  

    public function onTask($serv, $task_id, $from_id, $data)  
    {  
        $array = json_decode($data, true);  
        if ($array['url']) {  
            return $this->httpGet($array['url'], $array['param']);  
        }  
    }  

    public function onFinish($serv, $task_id, $data)  
    {  

        echo "Task {$task_id} finish\n";  
        echo "Result: {$data}\n";  
    }  

    protected function httpGet($url, $data)  
    {  
        if ($data) {  
            $url .= '?' . http_build_query($data);  
        }  
        $curlObj = curl_init(); //初始化curl,  
        curl_setopt($curlObj, CURLOPT_URL, $url); //设置网址  
        curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1); //将curl_exec的结果返回  
        curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, FALSE);  
        curl_setopt($curlObj, CURLOPT_SSL_VERIFYHOST, FALSE);  
        curl_setopt($curlObj, CURLOPT_HEADER, 0); //是否输出返回头信息  
        $response = curl_exec($curlObj); //执行  
        curl_close($curlObj); //关闭会话  
        return $response;  
    }  


}  

$server = new Server();  


回复

使用道具 举报

 楼主| 发表于 2018-3-8 16:26:45 | 显示全部楼层
##Client端

<?php  
  
class Client  
{  
    private $client;  
  
    public function __construct()  
    {  
        $this->client = new swoole_client(SWOOLE_SOCK_TCP);  
    }  
  
    public function connect()  
    {  
        if (!$this->client->connect("127.0.0.1", 9501, 1)) {  
            throw new Exception(sprintf('Swoole Error: %s', $this->client->errCode));  
        }  
    }  
  
    public function send($data)  
    {  
        if ($this->client->isConnected()) {  
            if (!is_string($data)) {  
                $data = json_encode($data);  
            }  
  
            return $this->client->send($data);  
        } else {  
            throw new Exception('Swoole Server does not connected.');  
        }  
    }  
  
    public function close()  
    {  
        $this->client->close();  
    }  
}  
  
$data = array(  
    "url" => "http://192.168.10.19/send_mail",  
    "param" => array(  
        "username" => 'test',  
        "password" => 'test'  
    )  
);  
$client = new Client();  
$client->connect();  
if ($client->send($data)) {  
    echo 'success';  
} else {  
    echo 'fail';  
}  
$client->close();  
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|技术文档库 ( 闽ICP备15017263号-2 )|网站地图

GMT+8, 2025-5-18 22:11 , Processed in 0.034904 second(s), 16 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表