Home > Backend Development > PHP Tutorial > shell - PHP 结束 C程序循环

shell - PHP 结束 C程序循环

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:06:35
Original
932 people have browsed it

<code>#include <stdlib.h>
#include <stdio.h>
#include <string.h>

int loop;

void Stoploop(void){
    loop=0;
}

int main(int argc, char *argsv[]){
int i;
loop=1;
while(loop==1){
    printf("%d/n",i);
    i++;
}
return 0;
}</string.h></stdio.h></stdlib.h></code>
Copy after login
Copy after login

举例如上,在linux下开始运行此程序。
PHP端调用shell_exec();执行该程序后,如何终止该程序循环?

回复内容:

<code>#include <stdlib.h>
#include <stdio.h>
#include <string.h>

int loop;

void Stoploop(void){
    loop=0;
}

int main(int argc, char *argsv[]){
int i;
loop=1;
while(loop==1){
    printf("%d/n",i);
    i++;
}
return 0;
}</string.h></stdio.h></stdlib.h></code>
Copy after login
Copy after login

举例如上,在linux下开始运行此程序。
PHP端调用shell_exec();执行该程序后,如何终止该程序循环?

通常来讲应该编译成动态库so交由脚本调用,而且这样的无限循环应该开线程,然后需要停止的时候直接杀掉线程就好了。

你这个C程序是一个常驻进程啊。要终止,就是要杀掉这个C程序。直接调kill命令。或者你这个C程序注册了信号,可以发信号终止。

本质上你就是PHP和C进程间通信。
你可查一下进程间通信IPC相关的技术文档了解。

当loop!=1的时候 就结束循环了

比较简单粗暴的方式,同样调用shell_exec(),"kill -9 $pid" 来终止这个程序

C代码改一下, loop=1; 改成变量的形式

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template