|
Why it can't return the result before sleep function in PHP
|
Reply to this subject
Start a new subject
 
Refresh page
| Posted by |
Tianxz
(30 posts) bio
|
| Date |
Thu 20 May 2010 01:09 PM (UTC) [ quote
] |
| Message |
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? | top |
|
| Posted by |
David Haley
USA (3,881 posts) bio
Moderator |
| Date |
Reply #1 on Thu 20 May 2010 04:34 PM (UTC) [ quote
] |
| Message |
As you are sleeping, the program isn't awake to receive the MUD's response to the command.
There are easier ways of pausing scripts in Lua with coroutines, but I don't know of easy ways in PHP. You can get around it by doing things like calling DoAfter and giving it a timeout and the function to finish evaluating your code. |
David Haley aka Ksilyan
Head Programmer,
Legends of the Darkstone
http://david.the-haleys.org | top |
|
| Posted by |
Nick Gammon
Australia (18,770 posts) bio
Forum Administrator |
| Date |
Reply #2 on Thu 20 May 2010 08:44 PM (UTC) [ quote
] |
| Message |
Indeed.
Although that mentions Lua, it also describes why sleeping doesn't work. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
1,222 views.
Reply to this subject
Start a new subject
 
Refresh page
top
Comments to:
Gammon Software support
Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )