mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
18 lines
280 B
PHP
18 lines
280 B
PHP
--TEST--
|
|
Test curl_multi_select()
|
|
--CREDITS--
|
|
Ivo Jansch <ivo@ibuildings.com>
|
|
#testfest Utrecht 2009
|
|
--EXTENSIONS--
|
|
curl
|
|
--FILE--
|
|
<?php
|
|
|
|
//create the multiple cURL handle
|
|
$mh = curl_multi_init();
|
|
echo curl_multi_select($mh)."\n";
|
|
|
|
curl_multi_close($mh);
|
|
?>
|
|
--EXPECTF--
|
|
%r(0|-1)%r
|