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