假设有两个 PHP 函数。
function first()
{
$keyword = $this->input->post('keyword');
//search for the result and show it to users.
$this->search->search($keyword);
//send the keyword to save it into the db.
$this->second($keyword);
}
function second($keyword)
{
//saving a search keyword in the db
}
我想尽快发送结果并将搜索词保存到数据库中。
但是,我想在特定时间之后运行第二个脚本。
因为我想尽快将搜索结果提供给我的客户。
有没有办法在用户运行第一个 PHP 脚本后运行第二个 PHP 脚本?
* I don't want to use Cron Job
* I wanna run those two script separatly.
* don't want to use sleep because it will stop the first script for certain times.