How to echo something every 3 minutes while in an endless loop?

1.8k Views Asked by At

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());
}
4

There are 4 best solutions below

4
On

Use the sleep function: http://php.net/manual/en/function.sleep.php

// sleep for 30 seconds
sleep(30);
1
On

you can use sleep();

echo $statement1;
sleep(180);
echo $statement2;
1
On

Try something like this:

<?php

while (@ob_end_flush());
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");
                                ob_flush();
                                flush();
                                $the_time = time();
                            }
                            $this->presence($status = "ONLINE !!!", $show = "online");
                        }
                        break;
                }
            }
        }
    }
} catch (XMPPHP_Exception $e) {
    die($e->getMessage());
} 
0
On

Use loop and echo your text with sleep;

// sleep for 20 seconds
while( true )
{
   echo "text here!";
   sleep(20);
}

It will echo text 3 times in 1 minute.