| ▲ | habibur 4 hours ago | |||||||
Used that a lot in shell scripts. using php-cli.like in `mkdir $dirname`; | ||||||||
| ▲ | pabs3 3 hours ago | parent [-] | |||||||
That is an anti-pattern, since it suffers from shell meta-character injection (and argument injection). Since PHP has mkdir, you should use that instead. And pcntl_exec() is the correct API for running processes. | ||||||||
| ||||||||