Is it possible to background a shell command that is executed via system / exec?
Like in bash:
/bin/command &
Would the following do the same:
system('/bin/command &');
|
Is it possible to background a shell command that is executed via system / exec? Like in bash:
Would the following do the same:
|
|||
|
|
|
it will be the same as the bash, as the text is sent directly to the command line but it's limited to the user permissions for the user that allocated to php & apache so you should check user permissions to access these command. |
|||
|
|