Jul 16, 2006 | 05:34:57
PHP is a sufficiently rich programming environment that it is not common that I truly need to execute external programs on the server on which it executes. However, every once in a while, this situation does come along, and for these, it is important to understand the options that PHP provides, what their differences are, and their relative strengths and weaknesses.
There are four primary choices for executing external programs in PHP:
- The
systemfunction. - The
execfunction. - The
shell_execfunction or its syntactic analogue, the backtick operator, ( ` ). - the
passthrufunction.


Popular Articles:
Top Tags:
Koriun wrote:
i think you should give a try and have a look at "playsms". it's written in php but it's easy ...