在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
2.1 进程 两种使用子进程的方法:fork()函数和system()、exec()函数 2.1.1 fork()函数 $pid = fork() $pid=getppid() $$=getppid() 2.1.2 system()函数和exec函数 $status = system('command and arguments'); $status = exec('command and arguments'); exec()和system()的区别是:如果运行成功,exec()从不返回,因为进程没了,除了标准句柄之外的文件句柄将自动关闭。 |
请发表评论