DoctorD
Guest
Что быстрее CURL или fsockopen
Расскажите что быстрее возвращает ответ:
============================
1.
$url = "host".$msg;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
$result = curl_exec($ch);
curl_close($ch);
или
2.
$f = fsockopen($url,80)) {
fputs($f,$msg,strlen($msg));
while (!feof($f)) {
$result .= fread($f, $someint);
}
fclose($f);
=============================
или ни то, ни другое не зарабоает?
и заработает ли 1 быстрее с
curl_setopt($ch, CURLOPT_LOW_SPEED_LIMIT, $someintl);
Расскажите что быстрее возвращает ответ:
============================
1.
$url = "host".$msg;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
$result = curl_exec($ch);
curl_close($ch);
или
2.
$f = fsockopen($url,80)) {
fputs($f,$msg,strlen($msg));
while (!feof($f)) {
$result .= fread($f, $someint);
}
fclose($f);
=============================
или ни то, ни другое не зарабоает?
и заработает ли 1 быстрее с
curl_setopt($ch, CURLOPT_LOW_SPEED_LIMIT, $someintl);