cURL / Mailing Lists / curl-library / Single Mail

curl-library

ob_flush, does it cause data to be sent over the wire immediately?

From: Tolas Anon <tolas777_at_gmail.com>
Date: Fri, 11 Feb 2011 04:05:04 +0100

Hi..

For my curl_exec problem,
http://readlist.com/lists/lists.php.net/php-general/16/81195.html
http://curl.haxx.se/mail/lib-2011-02/0101.html

I need to know if this simple test will cause data to be sent every 25
seconds _over the wire_.

<?php
set_time_limit (0);
error_reporting (E_ALL);
for ($i=0; $i<((3600+1800)/25); $i++) {
        echo '.';
        ob_flush();
        sleep (25);
};
echo "wanted-data";
?>

reason; i just can't get my media import routines that only send
sporadic status messages to work for big video files.
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-library
Etiquette: http://curl.haxx.se/mail/etiquette.html
Received on 2011-02-11