安装使用swoole
swoole首页:https://www.swoole.com/
方法1:使用pecl安装
pecl install swoole
注意,php版本必须是7.0以及7.0以上的版本。
方法2:编译源码安装
第一步:下载swoole的源码
下载源码的时候要注意,swoole2.0及以后版本不再支持PHP5.x
git clone https://github.com/swoole/swoole-src.git
第二步:进入源码目录,执行phpize命令
第三步:配置php-config的路径
./configure --with-php-config=/usr/local/php/bin/php-config
第四步:将php.ini中被禁止的proc_open、proc_get_status、system、exec、shell_exec这几个函数从其中删除,因为在make时要用到这几个函数。
第五步:make
注意:如果下载的swoole 2.x,而php版本低于7.0,在这一步会失败,请下载正确源码版本
第六步:make test
第七步检测是否安装成功
php -m
使用swoole搭建一个http服务器
<?php $http = new swoole_http_server("0.0.0.0",9501);
$http->on("request", function($request, $response){
print_r($request);
print_r($response);
}); $http->start();
向服务器发起请求:
curl 123.123.123.123:9501/aaa/bbb/index.html
运行结果:
Swoole\Http\Request Object
(
[fd] => 1
[header] => Array
(
[user-agent] => curl/7.29.0
[host] => 123.123.123.123:9501
[accept] => */*
) [server] => Array
(
[request_method] => GET
[request_uri] => /aaa/bbb/index.html
[path_info] => /aaa/bbb/index.html
[request_time] => 1531286716
[request_time_float] => 1531286716.3838
[server_port] => 9501
[remote_port] => 46576
[remote_addr] => 123.123.123.123
[master_time] => 1531286716
[server_protocol] => HTTP/1.1
[server_software] => swoole-http-server
) [request] =>
[cookie] =>
[get] =>
[files] =>
[post] =>
[tmpfiles] =>
)
Swoole\Http\Response Object
(
[fd] => 1
[header] =>
[cookie] =>
[trailer] =>
)
可以观察一下上面Swoole\Http\Request和Swoole\Http\Response的结构(属性)。
使用http服务器返回数据
<?php
$http = new swoole_http_server("0.0.0.0",9501);
$http->on("request", function($request, $response){
$response->header("Content-Type","text/html;chatset=utf-8");
$response->end("hello world\n");
}); $http->start();
运行脚本,然后请求服务器:
[root@centos ~]# curl xxx.xxx.xxx.xxx:9501/aaa/bbb/index.html
hello world
创建WebSocket服务器
显示index.html的websocket客户端
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body></body>
<script>
let ws = new WebSocket("ws://ganlixin.cn:9501"); ws.onopen = function(){
console.log("connect success");
} ws.onclose = function(){
console.log("closed")
} ws.onmessage = function(res){
console.log(res.data)
}
</script>
</html>
websocket服务器:
<?php
$ws = new swoole_websocket_server("0.0.0.0",9501); //打开连接
$ws->on("open", function($serv, $request){
echo "connected \n";
//向客户端发送信息
$serv->push($request->fd, "hello world\n");
}); //接收到数据
$ws->on("message", function($serv, $request){
echo "received data\n";
$serv->push($request->fd, "get message from client : {$request->data}");
}); //关闭连接
$ws->on("close", function(){
echo "closed\n";
}); $ws->start();
运行index.html,看控制台,有信息输出:
定时器
面向过程的形式
<?php
//循环定时器
//int swoole_timer_tick(int $ms, callable $callback, mixed $user_param);
$timer_id = swoole_timer_tick(5000, function($timer_id) {
echo "current time " . date("Y-m-d H:i:s",time()) . "\n";
});
echo $timer_id; //清除定时器
//swoole_timer_clear($timer_id);
面向对象的形式
<?php
//循环定时器
$server = new swoole_server("0.0.0.0", 9501);
$timer_id = $server->tick(1000,function($timer_id){
echo "timer_id : " . $timer_id . " current time " . date("Y-m-d H:i:s",time()) . "\n";
}); //注意,没有$swoole_server->clear();
swoole_timer_clear($timer_id);
使用定时器,一般都是使用面向过程的形式,因为那样的话,可以不用指定ip以及port。
异步TCP服务器
<?php
//创建TCP服务器,默认是同步阻塞工作模式
$server = new swoole_server("0.0.0.0",9501); //设置异步进程数量
$server->set( [ "task_worker_num" => 4 ]); //接收到请求时
$server->on("receive", function($serv, $data, $fd){
$task_id = $serv->task($data); //生成异步任务id
echo "task id is " . $task_id . "\n";
}); //处理异步任务
$server->on("task", function($serv, $task_id, $from_id, $data){
echo "执行异步任务 task_id : $task_id \n";
$serv->finish("data -> OK");
}); $server->on("finish", function($serv, $task_id, $data){
echo "执行任务{$task_id}完成\n";
}); $server->start();
?>
多次访问服务器绑定的端口,会看到服务器控制台输出内容如下
[root@centos index]# php index.php
task id is 0
执行异步任务 task_id : 0
执行任务0完成
task id is 1
执行异步任务 task_id : 1
执行任务1完成
task id is 2
执行异步任务 task_id : 2
执行任务2完成
task id is 3
执行异步任务 task_id : 3
执行任务3完成
TCP客户端
<?php
//创建tcp客户端
//swoole_client->__construct(int $sock_type, int $is_sync = SWOOLE_SOCK_SYNC, string $key);
$client = new swoole_client(SWOOLE_SOCK_TCP); //连接服务器
//bool $swoole_client->connect(string $host, int $port, float $timeout = 0.5, int $flag = 0)
$client->connect("123.123.123.123", 9501, 5) or die("连接失败"); //发送数据request
//int $swoole_client->send(string $data);
$client->send("hello world"); //接受服务器的response
//string $swoole_client->recv(int $size = 65535, int $flags = 0);
//第二个参数表示是否等到所有数据都到达之后再返回
$res = $client->recv(65535);
echo $res;
异步TCP客户端
<?php
//创建一个异步tcp客户端
$client = new swoole_client(SWOOLE_SOCK_TCP,SWOOLE_SOCK_ASYNC); //只有tcp客户端是异步的时候,可以绑定事件
$client->on("connect", function($cli){
echo "connect\n";
}); $client->on("receive", function($cli, $data){
echo "data : $data \n";
}); $client->on("err", function($cli){
echo "error\n";
}); $client->on("close", function($cli){
echo "closed\n";
}); $client->connect("ganlixin.cn",80,10);
?>
创建进程执行指定任务
<?php
//创建一个函数,包含之后创建的进程要干的任务
function doJob(swoole_process $worker){
/*
print_r($worker);
Swoole\Process Object
(
[pipe] => 5
[callback] => doJob
[msgQueueId] =>
[msgQueueKey] =>
[pid] => 22777
[id] =>
)
*/
//执行外部程序
//bool swoole_process->exec(string $execfile, array $args)
$worker->exec('/usr/local/apache/bin/apachectl',array("start"));
} //创建进程,将要做的事情(上面指定的函数)传递给构造方法
$process_1 = new swoole_process("doJob");
$pid = $process_1->start();
//echo $pid,"\n"; $process_2 = new swoole_process("doJob");
$pid = $process_2->start();
//echo $pid,"\n"; //等待进程结束
swoole_process::wait();
指定进程事件
<?php
//进程池
$process_pool = array(); //进程数量
$process_num = 4; //创建任务
function doJob(swoole_process $process){
//向管道中写入自己的pid
$process->write("my pid is $process->pid");
echo "pid : $process->pid 已写入信息\n";
$process->callback;
} for ( $i = 0; $i < $process_num; $i++ ) {
$process = new swoole_process("doJob");
$pid = $process->start();
$process_pool[] = $process; //存入进程池
} //向每一个子进程指定需要执行的操作
foreach($process_pool as $process){
swoole_event_add($process->pipe, function($pipe) use ($process){
$data = $process->read();
echo "接收到数据 $data\n";
});
}
运行:
pid : 25176 已写入信息
接收到数据 my pid is 25176
pid : 25177 已写入信息
接收到数据 my pid is 25177
pid : 25175 已写入信息
接收到数据 my pid is 25175
pid : 25174 已写入信息
接收到数据 my pid is 25174
进程队列
<?php
//进程池
$process_pool = array(); //进程数
$process_num = 4; //子进程要执行的任务
function doJob(swoole_process $process){
$recv_data = $process->pop();//默认8192字节
echo "从主进程收到数据 $recv_data\n";
sleep(1);
$process->exit(0);//进程退出
} for ( $i = 0; $i < $process_num; $i++ ) {
$process = new swoole_process("doJob",false,false);
//加入进程池
$process_pool[] = $process;
$process->useQueue();//开启进程队列
$process->start();
} //主进程执行
foreach($process_pool as $process){
//主进程向子进程发送数据
$process->push("hello, I'm your father, your pid is $process->pid\n");
} //等待子进程结束
for ( $i = 0; $i < $process_num; $i++ ) {
//array swoole_process::wait(bool $blocking = true);
$process = swoole_process::wait();
echo "子进程{$process["pid"]}退出\n";
} //销毁进程池
unset($process_pool);
?>
信号触发
<?php
swoole_process::signal(SIGALRM,function(){
//每次收到SIGALRM信号就执行一次
echo "one"; /*
满足某种条件是,取消定时触发信号
if ( condition ){
swoole_process::alarm(-1);
}
*/
}); //单位是微秒 1秒=1000000微秒
//一秒触发一次alarm信号
swoole_process::alarm(1000000); //上面的代码等同于
//swoole_timer_tick(1000,function(){
// echo "one";
//});
互斥锁
<?php
//创建互斥锁
$mutex = new swoole_lock(SWOOLE_MUTEX); $mutex->lock();
echo "父进程加锁\n"; if ( pcntl_fork() > 0){
//主进程执行
sleep(2);
$mutex->unlock();
} else {
//子进程执行
echo "子进程等待父进程解锁\n";
$mutex->lock();
echo "子进程加锁\n";
$mutex->unlock();
exit("子进程退出\n");
} echo "主进程释放锁\n";
unset($mutex);
?>
运行结果:
[root@centos index]# php mutex.php
父进程加锁
子进程等待父进程解锁
主进程释放锁 子进程加锁
子进程退出
DNS查询
通过传入域名,返回ip。
<?php
swoole_async_dns_lookup("www.swoole.com", function($host, $ip){
echo "{$host} : {$ip}\n";
});
?>
异步读取文件
在PHP中读取文件,如果是大文件,可能需要的时间就长一点,那么就要修改php配置参数。
<?php //采取分段读的方式
//bool swoole_async_read(string $filename, mixed $callback, int $size = 8192, int $offset = 0);
swoole_async_read("./mutex.php", function($filename,$content){
echo $content;
},10);
异步读取文件
分段写入
<?php $content = file_get_contents("beego.tar"); //分段写入
//swoole_async_write(string $filename, string $content, int $offset = -1, mixed $callback = NULL);
//offset置为-1时,表示追加方式
swoole_async_write("data.tar", $content,1);
异步mysql
<?php
$mysql = new swoole_mysql(); $config = array(
"host" => "localhost",
"user" => "root",
"password" => "123456",
"database" => "test",
"charset" => "utf8"
); $mysql->connect($config, function(swoole_mysql $db, $result){
if ($result === FALSE) {
echo "$result->connect_errno , $result->connect_error\n";
exit();
}
echo "数据库连接成功\n"; $sql = "select * from demo"; $db->query($sql, function($link, $result){
if ($result === FALSE) {
echo "执行SQL失败\n";
exit();
}
print_r($result);
//$result保存着结果集
});
});
?>
运行:
[root@centos index]# php async_mysql.php
数据库连接成功
Array
(
[0] => Array
(
[id] => 1
[name] => aaa
[age] => 10
) [1] => Array
(
[id] => 2
[name] => bbb
[age] => 20
) )
安装使用swoole的更多相关文章
- 安装完 swoole 后出现 PHP Warning: PHP Startup: Unable to load dynamic library 'swoole.so'的解决方法
安装完 swoole 后出现 PHP Warning: PHP Startup: Unable to load dynamic library 'swoole.so' (tried: /home/s ...
- centos7下安装PHP swoole扩展
PHP的异步.并行.高性能网络通信引擎,使用纯C语言编写,提供了PHP语言的异步多线程服务器,异步TCP/UDP网络客户端,异步MySQL,异步Redis,数据库连接池,AsyncTask,消息队列, ...
- Ubuntu 16.04 源码编译安装PHP7+swoole
备注: Ubuntu 16.04 Server 版安装过程图文详解 Ubuntu16镜像地址: 链接:https://pan.baidu.com/s/1XTVS6BdwPPmSsF-cYF6B7Q 密 ...
- brew安装PHP7 swoole
环境: 系统:mac os High Sierra 10.13.3 php版本:7.0.27_19 1.安装homebrew brew 又叫Homebrew,是Mac OSX上的软件包管理工具,能在M ...
- centos7.5 ab压力测试安装和swoole压力测试
Apache Benchmark(简称ab) 是Apache安装包中自带的压力测试工具 ,简单易用 1.ab安装 yum -y install httpd-tools 2.ab参数详解,传送门:htt ...
- Linux下swoole的安装配置
前几天搭建swoole环境,在安装php的swoole扩展时不知道什么原因,提示成功,但是使用的时候不能加载,最后决定重新安装php试试,顺便记录了php的安装过程 wget http://cn2.p ...
- linux下安装php的swoole扩展模块(安装后php加载不出来?)
应开发同事要求,需要安装php的扩展模块swoole.swoole是一种PHP高级Web开发框架,框架不是为了提升网站的性能,而是为了提升网站的开发效率,以最少的性能损耗,换取最大的开发效率. 假设服 ...
- mac air中编译安装swoole
本机php版本, 我的7.3.0 1 下载swoole源码 https://github.com/swoole/swoole-src/releases 我下载的版本是swoole-src-4.3.3. ...
- php----------linux下安装php的swoole扩展
1.首先你已经安装好了php环境,这里就不介绍php环境的安装了.如果你是编译安装记得将php加入环境变量,以便于方便查看扩展是否安装成功. 2.我安装的php环境缺少了要给东西,详细看下图 如果你没 ...
随机推荐
- C# -- 使用XmlDocument或XDocument创建xml文件
使用XmlDocument或XDocument创建xml文件 需引用:System.Xml; System.Xml.Linq; 1.使用XmlDocument创建xml(入门案例) static vo ...
- Linux 小知识翻译 - 「邮件服务器」
这次聊聊「邮件服务器」. 邮件服务器上通常会运行2个服务端软件,「SMTP服务器」和「POP服务器或者IMAP服务器」. 这2个东西,也许使用邮件客户端的人立马就明白了.因为设置邮件客户端的时候,需要 ...
- background-image使用svg如何改变颜色
结论 在我多番测试之后,才发现background-image使用svg,改变颜色根本做不了. 分析 当svg图片被使用成background-image,颜色的设置需要在svg内部才能生效.在外部C ...
- win10上如何启用或禁用Windows功能
Windows10上提供了很多的功能,比如打印服务.传真服务.媒体服务等,怎样启用或禁用某些Windows功能呢? 工具/原料 windows10 方法/步骤 点击左下角的Windows图 ...
- node基础—http模块
在浏览器输入存在的网址的一个交互过程 1.用户通过浏览器发送一个http的请求到指定的主机 2.服务器接收到该请求,对该请求进行分析和处理 3.服务器处理完成以后,返回对应的数据到用户机器 4.浏览器 ...
- redis学习笔记(二)-五种数据类型
string hash hget ks k hset ks k v hgetall ks hdel ks k del ks hmset ks k v k v list set zset 通用命令 快 ...
- 关于Swift中的指针的那些事
前言 在Objective-c的世界中,一切对象都是指针.它是一种运行时语言,具体指针的对象类型将会在运行时,由系统分配.这样虽然自由,但是却并不安全. Swift世界就不一样了,Swift的世界很安 ...
- ddt框架优化(生成html报告注释内容传变量)
https://blog.csdn.net/weixin_33923148/article/details/86017742 按要求修改后发现 注释只传值第一个变量 这是因为 ddt数据驱动生成ht ...
- 关于xampp中无法启动mysql,Attempting to start MySQL service...的解决办法!!
最近在学习服务器方面的知识,找到了这款功能强大的建站集成软件包——xampp.但是在开数据库服务器的时候,出现了这种情况.一直在Attemptng to start MySQL service... ...
- iptables 设置端口转发/映射
iptables 设置端口转发/映射 服务器A有两个网卡 内网ip:192.168.1.3 外网ip:10.138.108.103 本地回环:127.0.0.1 服务器B有网卡,8001提供服务 内网 ...