Fork a process with PHP


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function fork($cmd){
  2. $cmd = $cmd.' > /dev/null &';
  3. shell_exec($cmd);
  4. }

URL: fork-process-with-php

Report this snippet


Comments


You need to login to view comments.