博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 做守护进程1
阅读量:6496 次
发布时间:2019-06-24

本文共 3043 字,大约阅读时间需要 10 分钟。

 这个例子跟网络有关,大致就是模拟使用php做服务器端,然后一直后台运行,达到服务器端Daemon的效果。

    继续在我们的主目录下:/home/heiyeluren,编辑文件php_daemon2.php:

    $ vi php_daemon2.php

    输入如下代码(代码来自PHP手册,我进行了修改注释):

  

 #! /usr/local/php/bin/php
<?php
/* 设置不显示任何错误 */
error_reporting(0);
/* 脚本超时为无限 */
set_time_limit(0);
/* 开始固定清除 */
ob_implicit_flush();
/* 本机的IP和需要开放的端口 */
$address = '192.168.0.1';
$port = 10000;
/* 产生一个Socket */
if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) < 0) {
echo "socket_create() failed: reason: " . socket_strerror($sock) . "\n";
}
/* 把IP地址端口进行绑定 */
if (($ret = socket_bind($sock, $address, $port)) < 0) {
echo "socket_bind() failed: reason: " . socket_strerror($ret) . "\n";
}
/* 监听Socket连接 */
if (($ret = socket_listen($sock, 5)) < 0) {
echo "socket_listen() failed: reason: " . socket_strerror($ret) . "\n";
}
/* 永远循环监接受用户连接 */
do {
if (($msgsock = socket_accept($sock)) < 0) {
echo "socket_accept() failed: reason: " . socket_strerror($msgsock) . "\n";
break;
}
/* 发送提示信息给连接上来的用户 */
$msg = "==========================================\r\n" .
" Welcome to the PHP Test Server. \r\n\r\n".
" To quit, type 'quit'. \r\n" .
" To shut down the server type 'shutdown'.\r\n" .
" To get help message type 'help'.\r\n" .
"==========================================\r\n" .
"php> ";
socket_write($msgsock, $msg, strlen($msg));
    do {
if (false === ($buf = socket_read($msgsock, 2048, PHP_NORMAL_READ))) {
echo "socket_read() failed: reason: " . socket_strerror($ret) . "\n";
break 2;
}
if (!$buf = trim($buf)) {
continue;
}
  /* 客户端输入quit命令时候关闭客户端连接 */
if ($buf == 'quit') {
break;
}
  /* 客户端输入shutdown命令时候服务端和客户端都关闭 */
if ($buf == 'shutdown') {
socket_close($msgsock);
break 2;
}
  /* 客户端输入help命令时候输出帮助信息 */
if ($buf == 'help') {
$msg = " PHP Server Help Message \r\n\r\n".
" To quit, type 'quit'. \r\n" .
" To shut down the server type 'shutdown'.\r\n" .
" To get help message type 'help'.\r\n" .
"php> ";
socket_write($msgsock, $msg, strlen($msg));
continue;
}
/* 客户端输入命令不存在时提示信息 */
$talkback = "PHP: unknow command '$buf'.\r\nphp> ";
socket_write($msgsock, $talkback, strlen($talkback));
echo "$buf\n";
} while (true);
socket_close($msgsock);
} while (true);
/* 关闭Socket连接 */
socket_close($sock);
?>

    保存以上代码退出。

 

    上面的代码大致就是完成一个类似于Telnet服务器端的功能,就是当服务器端运行该程序的时候,客户端能够连接该服务器的10000端口进行通信。

    加上文件的可执行权限:

    $ chmod +x /home/heiyeluren/php_daemon2.php

    在服务器上执行命令:

    $ nohup /home/heiyeluren/php_daemon2.php &

    就进入了后台运行,我们通过Windows的客户端telnet上去:

    C:\>telnet 192.168.0.1 10000

    如果提示:

    正在连接到192.168.0.188...不能打开到主机的连接, 在端口 10000: 连接失败

    则说明服务器端没有开启,或者上面的程序没有正确执行,请检查php是否 --enable-sockets 功能。如果提示:

   

 ==========================================
Welcome to the PHP Test Server.
To quit, type 'quit'.
To shut down the server type 'shutdown'.
To get help message type 'help'.
==========================================
php>

    则说明顺利连接上了我们的PHP写的服务器端守护进程,在php>提示符后面能够执行help、quit、shutdown等三个命令,如果命令输入不是这三个,则提示:

 

   

 php> asdf
PHP: unknow command 'asdf'.

    执行help命令可以获取帮助

 

   

 php> help
PHP Server Help Message
To quit, type 'quit'.
To shut down the server type 'shutdown'.
To get help message type 'help'.

    这个服务器端就不介绍了,可以自行扩展。

 

    杀进程跟例子一类似。

转载地址:http://sdcyo.baihongyu.com/

你可能感兴趣的文章
android实现图片识别的几种方法
查看>>
mvc学习地址
查看>>
masonry 基本用法
查看>>
使用openssl创建自签名证书及部署到IIS教程
查看>>
Word产品需求文档,已经过时了【转】
查看>>
dtoj#4299. 图(graph)
查看>>
关于网站的一些js和css常见问题的记录
查看>>
zabbix-3.4 触发器
查看>>
换用代理IP的Webbrowser方法
查看>>
【视频编解码·学习笔记】7. 熵编码算法:基础知识 & 哈夫曼编码
查看>>
spark集群安装部署
查看>>
MySql 查询表字段数
查看>>
mariadb 内存占用优化
查看>>
开源智能手机 Librem 5 跳票了,推迟至第3季度发布
查看>>
使用 SQL Server 的 uniqueidentifier 字段类型
查看>>
Posted content type isn't multipart/form-data
查看>>
一星期没完成Ansible任务
查看>>
jQuery学习(第一天)
查看>>
【对讲机的那点事】关于对讲机锂电池你了解多少?
查看>>
XDOC Office Server 开源了,Office文档完美转换为PDF
查看>>