0

我想知道是否可以同时随机执行两个 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]);
4

1 回答 1

1

试试这门课

http://peecfw.googlecode.com/svn/trunk/Application/com/loadable/curl/CURL_thread.php

你可以这样称呼它

$cURL = new CURL();
$cURL->addSession("https://www.example.com/?data=test");
$cURL->addSession("https://www.example2.com/?data=test");
$responses = $cURL->exec();  //This array will contain all responses
$cURL->clear();
于 2012-08-04T15:03:01.980 回答