I have a script that uses while(true)
to run so it runs forever until it dies.
I want to be able to make it send a message once every 3 minutes and reconnecting every disconnect, how can I do this?
The script for runs on a Jabber server with using PHP hosting, so it's confusing, plus I am not sure how to make it do that every 3 minutes and automatic reconnecting while disconnect, because if I am using sleep()
or usleep()
the script will stack and script auto respond message will not run.
So how can I make it? Can somebody help me?
try {
while(!$this->disconnect()) {
$this->connect();
while(!$this->isDisconnected()) {
$starts = $this->processUntil(array('message', 'session_start'));
foreach($starts as $go) {
$new = $go[1];
switch($go[0]) {
case 'session_start':
break;
case 'message':
$filter = $show="online";
if($new['from'] == $filter) {
$sender = explode('@', $new['from']);
$this->message($new['from'], $body="Auto Respond Message: Sorry $sender[0] Iam Not Here Right Now", $type="chat");
}
$the_time = time();
$interval = 3*60;
while(true) {
if ($the_time + $interval >= time()) {
$this->message($myself, $body="PING !!!", $type="chat");
$the_time = time();
}
$this->presence($status="ONLINE !!!", $show="online");
}
break;
}
}
}
}
} catch(XMPPHP_Exception $e) {
die($e->getMessage());
}
Use the sleep function: http://php.net/manual/en/function.sleep.php