In the php, I want do a function after a trigger. The code like:
$world->Execute('hp');
sleep(4);
Task();
But the command hp doesn't display the result before the sleep time over. How can I do it?
$world->Execute('hp');
sleep(4);
Task();
But the command hp doesn't display the result before the sleep time over. How can I do it?