How do I continue the execution when exec(sleep NUMBER; anotherCommand) in PHP?

Boss_013

New Member
I have this code: \[code\]<?php exec("sleep 15m; ls -l"); echo "Done";?>\[/code\]But it gets stuck and won't stop loading until 15 minutes have passed, is there anyway to not wait for the exec execution?
 
Back
Top