PHP » GoLang |
login |
register |
about
|
exec(PHP 4, PHP 5, PHP 7) exec — Execute an external program Description
string exec
( string
$command
[, array &$output
[, int &$return_var
]] )
exec() executes the given
Parameters
Return ValuesThe last line from the result of the command. If you need to execute a command and have all the data from the command passed directly back without any interference, use the passthru() function.
To get the output of the executed command, be sure to set and use the
Examples
Example #1 An exec() example
<?php NotesWarning
When allowing user-supplied data to be passed to this function, use escapeshellarg() or escapeshellcmd() to ensure that users cannot trick the system into executing arbitrary commands.
Warning
With safe mode enabled, the command string is escaped with escapeshellcmd(). Thus, echo y | echo x becomes echo y \| echo x. See Also
|
more
Recently updated
more
Most requested
more
Last requests
|