系统相关
首页 > 系统相关> > 用PHP shell_exec()循环:使用php for()或bash做完吗?

用PHP shell_exec()循环:使用php for()或bash做完吗?

作者:互联网

假设我想用PHP shell_exec()执行命令mycommand 10次.我应该做一个bash循环:

shell_exec('for i in {1 .. 10} do mycommand -i done');

或更确切地说是一个PHP循环:

for($i = 1; $i <=10; ++$i) { shell_exec('mycommand -'.$i); }

选择一个而不是另一个的原因(安全性,性能,样式…)是什么?

解决方法:

进行bash循环,因为shell_exec函数仅被调用一次.这将比多次调用shell_exec更快.启用exec,shell_exec之类的功能本身就是一个巨大的安全问题.如果有人设法在您的服务器中上载PHP Shell,那么他可以入侵您的服务器.

标签:shell-exec,bash,loops,for-loop,php
来源: https://codeday.me/bug/20191029/1960729.html