当前位置:首页 > 操作系统 > Linux

PHP施行linux命令

 php 执行linux 命令


# vim /etc/rc.d/rc.local
route add default gw 192.168.0.255 eth0
route add -net 10.0.1.0 netmask 255.255.255.0 gw 192.168.0.255 eth0
:wq

我知道php 调用系统底层命令 用exec 但是想知道 如何将这三句 同时执行呢?

------解决方案--------------------
最近也在做路由,我们的处理方法是,把文件写到文档里rc.local 里 然后system() 这个文件
------解决方案--------------------
1,脚本script.sh
c/c++ code
 #!/bin/bash
route add default gw 192.168.0.255 eth0
route add -net 10.0.1.0 netmask 255.255.255.0 gw 192.168.0.255 eth0  

【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!

相关教程推荐

其他课程推荐