I have this:

<?php shell_exec('some_command') ?>;

How can I run 'some_command' more than once?

I'm a code neat freak, calling them more than once kind of an eyesore to me.

有帮助吗?

解决方案

Put the command twice in the argument:

<?php shell_exec('some_command; some_command'); ?>

Or call shell_exec twice:

<?php shell_exec('some_command'); shell_exec('some_command'); ?>
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top