Posted by CJ Llewellyn on 06/06/05 23:15
On Mon, 06 Jun 2005 10:29:11 -0700, Tefla wrote:
> i didn't really explain the app properly, but no it isn't a copy of
> websvn, but a all in one tool for development and distribution.
>
> but really my question was, how reliable is calling binaries from PHP?
As reliable as you make it.
<?php
$foo = '/dev/null; rm -rf /var/www/html';
exec("mv /tmp/a.file $foo");
?>
Warning please don't try the above code at home.
[Back to original message]
|