我的长期民意调查似乎有时不起作用。有时它会显示最新的数据,让我们说10个提交的文本中的2个到数据库。
$db = $this->post->getLatest($userIds);//Get the 1 newest data from` database.
$oras = date('H:i:s', $time()); //Set the time format
foreach($db as $tl)
{
$dbTime = date('H:i:s', strtotime($tl->created_at)); //Setting the time format.
if($dbTime == $oras)
{
return $tl->post." -----> ".$oras."<br />"; //Showing the newest data
}
else
{
usleep(5000); // sleep in milliseconds
}
}