时间:2021-07-01 10:21:17 帮助过:1人阅读
微信支付中的企业支付用php的程序调用给同一个openid打钱的时候有频率限制,大概在1分钟左右,腾讯说用双线程就不会有限制了
用 PHP 创建一个线程就可以了呀。
class cthread extends Thread {
public function run() {
// 一些耗时的任务
}
}
$t = new cthread();
t->start(); // 启动线程,立即执行下一句
// to do other things
}