Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
@exec($command,$output);
|
||||
echo nl2br($output);
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
$results = `ls`;
|
||||
# runs command and returns its STDOUT as a string
|
||||
|
||||
system("ls");
|
||||
# runs command and returns its exit status; its STDOUT gets output to our STDOUT
|
||||
|
||||
echo `ls`;
|
||||
# the same, but with back quotes
|
||||
|
||||
passthru("ls");
|
||||
# like system() but binary-safe
|
||||
Loading…
Add table
Add a link
Reference in a new issue