一、多进程?php$pid = pcntl_fork();//父进程和子进程都会执行下面代码if ($pid == -1) {//错误处理:创建子进程失败时返回-1.die(could not fork);} else if ($pid) {//父进程会得到子进程号,所以这里是父进...
一、多进程
<?php
$pid = pcntl_fork();
//父进程和子进程都会执行下面代码
if ($pid == -1) {
//错误处理:创建子进程失败时返回-1.
die('could not fork');
} else if ($pid) {
//父进程会得到子进程号,所以这里是父进程执行的逻辑
pcntl_wait($status); //等待子进程中断,防止子进程成为僵尸进程。
} else {
//子进程得到的$pid为0, 所以这里是子进程执行的逻辑。
}
// 等待子进程执行结束
while (pcntl_waitpid(0, $status) != -1) {
$status = pcntl_wexitstatus($status);
echo "Child $status completed\n";
}
二、进程间通信
// 创建消息队列
<?php
$msg_key = ftok( __FILE__, 'a' );
$msg_queue = msg_get_queue( $msg_key, 0666 );
//启动进程
$pid = pcntl_fork();
if( $pid == 0 ){
//子进程向父进程报告
msg_send( $msg_queue, 1, "father i am " . getmypid(). " and i am working! \n" );
exit(); //退出子进程
}else if( $pid ){
msg_receive( $msg_queue, 0, $message_type, 1024, $message, TRUE, MSG_IPC_NOWAIT );
echo $message;
pcntl_wait( $status ); //阻塞回收子进程
if( $status ){
msg_remove_queue( $msg_queue );
}
}
沃梦达教程
本文标题为:Php 多进程与多进程通信
基础教程推荐
猜你喜欢
- 在Laravel中实现使用AJAX动态刷新部分页面 2023-03-02
- laravel ORM关联关系中的 with和whereHas用法 2023-03-02
- PHP中的错误及其处理机制 2023-06-04
- 使用PHP开发留言板功能 2023-03-13
- laravel 解决多库下的DB::transaction()事务失效问题 2023-03-08
- PHP实现Redis单据锁以及防止并发重复写入 2022-10-12
- php array分组,PHP中array数组的分组排序 2022-08-01
- thinkphp3.2.3框架动态切换多数据库的方法分析 2023-03-19
- PHP获取MySQL执行sql语句的查询时间方法 2022-11-09
- PHP命名空间简单用法示例 2022-12-01