我想知道是否可以同时随机执行两个 post_to_url 函数—— post_to_url 函数是一个 cURL 请求,而 $data 是表单中的变量。我试图用 curl_multi 句柄重写 post_to_url 函数,但它不起作用。感谢您的帮助 - 非常感谢。
$urls = array(
"http://examplesite1.com/cgi-bin/maxuseradmin.cgi",
"http://examplesite2?fid=6646588e54",
"http://examplesite1?fid=2fb44e3888"
);
$data = array(
$data2,
$data3,
$data4
);
$x = rand(0,2);
post_to_url($urls[x], $data[x]);
post_to_url($urls[x], $data[x]);