function post($url, $data = '', $head = 'application/x-www-form-urlencoded') { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-type:{$head};charset=utf-8;")); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); if (!empty($data)) { curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); } $output = curl_exec($ch); curl_close($ch); return $output; } $url = 'http://localhost/test.php'; $res = []; //模拟100条数据 for ($i=0; $i < 100; $i++) { $res[$key] = post($url, 'key='.$i); } var_dump($res);
Bitte sagen Sie mir, wie ich curl_multi_init in Multithreading umwandeln kann. Meine Idee ist, das $data-Array in array_chunk($data, 15, true); aufzuteilen und dann CURL auszuführen, aber ich bin ein Neuling und verstehe die Online-Beispiele nicht.