php代码怎么热更新,用实战操作教你,快收藏吧


php代码怎么热更新,用实战操作教你,快收藏吧

文章插图
 
这里以Zphp框架作为演示,实现swoole的代码热更新,在WorkerStart回调函数中,载入ZPHP框架:
use ZPHPZPHP;$zphp = null;$mimes = null;$http = new swoole_http_server('0.0.0.0',9501);$http->on('request', function (swoole_http_request $request, swoole_http_response $response){ //......});$http->on('WorkerStart',function($serv, $worker_id){ //框架载入 require __DIR__ . DIRECTORY_SEPARATOR . 'zphp' . DIRECTORY_SEPARATOR . 'ZPHP' . DIRECTORY_SEPARATOR . 'ZPHP.php'; global $zphp; $zphp = ZPHP::run(__DIR__, false, 'default'); global $mimes; $mimes = require "mimes.php";});$http->start();【php代码怎么热更新,用实战操作教你,快收藏吧】文件名为http_server.php
在后台运行此脚本:
php http_server.php &在浏览器输入192.168.1.116:9501进行http请求:
这是因为加载ZPHP框架后,访问了默认的控制器下的默认方法,其中一行代码为:
$data = https://www.isolves.com/it/cxkf/yy/php/2019-12-17/$project."zchat runing in swoole!!!!n";现在修改此行代码如下:
$data = https://www.isolves.com/it/cxkf/yy/php/2019-12-17/$project."The code is modified!!!!n";在linux中查看http_server的进程
ps axuf|grep http_server使用以下命令向manager进程发送一个信号来重载worker进程:
kill -USR1 5913可见4个worker进程的进程编号都和之前不同了,这说明manager进程已经重载了worker进程
刷新浏览器中的页面可见
热更新成功~
这里小小总结一下:
代码热更新其实更新的是"WorkerStart"回调函数里的内容,也就是说我们的业务代码都要放到"WorkerStart"回调函数中 。
以上就是php代码怎么热更新的详细内容,希望对你有所帮助 。




    推荐阅读