PHP 8.5.0 Beta 3 available for testing

Voting

: zero minus zero?
(Example: nine)

The Note You're Voting On

butesa at freenet dot de
12 years ago
You can use curl_multi_getcontent() on a curl handle that was executed with curl_exec() (and not added to a multi handle).
However, this is not very useful because curl_multi_getcontent() will return the same as curl_exec() then.

<?php
$ch
= curl_init('http://www.example.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$a = curl_exec($ch);
$b = curl_multi_getcontent($ch);
var_dump($a === $b);
curl_close($ch);
?>
will return:

bool(true)

<< Back to user notes page

To Top