Query: shell_exec
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SHELL_EXEC(3) 1 SHELL_EXEC(3) shell_exec - Execute command via shell and return the complete output as a stringSYNOPSISstring shell_exec (string $cmd)DESCRIPTIONThis function is identical to the backtick operator.PARAMETERSo $cmd - The command that will be executed.RETURN VALUESThe output from the executed command or NULL if an error occurred or the command produces no output. Note This function can return NULL both when an error occurs or the program produces no output. It is not possible to detect execution failures using this function. exec(3) should be used when access to the program exit code is required.EXAMPLESExample #1 A shell_exec(3) example <?php $output = shell_exec('ls -lart'); echo "<pre>$output</pre>"; ?>NOTESNote This function is disabled when PHP is running in safe mode.SEE ALSOexec(3), escapeshellcmd(3). PHP Documentation Group SHELL_EXEC(3)
Related Man Pages |
---|
php_check_syntax(3) - php |
exit(3) - php |
classkit_method_redefine(3) - php |
header_register_callback(3) - php |
passthru(3) - php |
Similar Topics in the Unix Linux Community |
---|
php shell_exec |
[Solved] Korn Shell execution |
Value not getting printed outside loop |
[Discussion] POSIX, the Love of Backticks and All That Jazz |
Shell_exec is not working |