mirror of
https://github.com/php/php-src.git
synced 2024-12-13 03:44:17 +08:00
65 lines
1.3 KiB
PHP
65 lines
1.3 KiB
PHP
--TEST--
|
|
Curl_multi_getcontent() basic test with different sources (local file/http)
|
|
--CREDITS--
|
|
Rein Velt (rein@velt.org)
|
|
#TestFest Utrecht 20090509
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('curl')) print 'skip';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
//CURL_MULTI_GETCONTENT TEST
|
|
|
|
//CREATE RESOURCES
|
|
$ch1=curl_init();
|
|
$ch2=curl_init();
|
|
|
|
//SET URL AND OTHER OPTIONS
|
|
curl_setopt($ch1, CURLOPT_URL, "http://php.net/robots.txt");
|
|
curl_setopt($ch2, CURLOPT_URL, "file://".dirname(__FILE__). DIRECTORY_SEPARATOR . "curl_testdata2.txt");
|
|
curl_setopt($ch1, CURLOPT_RETURNTRANSFER, true);
|
|
curl_setopt($ch2, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
//CREATE MULTIPLE CURL HANDLE
|
|
$mh=curl_multi_init();
|
|
|
|
//ADD THE 2 HANDLES
|
|
curl_multi_add_handle($mh,$ch1);
|
|
curl_multi_add_handle($mh,$ch2);
|
|
|
|
//EXECUTE
|
|
$running=0;
|
|
do {
|
|
curl_multi_exec($mh,$running);
|
|
} while ($running>0);
|
|
|
|
$results1=curl_multi_getcontent($ch1);
|
|
$results2=curl_multi_getcontent($ch2);
|
|
|
|
//CLOSE
|
|
curl_multi_remove_handle($mh,$ch1);
|
|
curl_multi_remove_handle($mh,$ch2);
|
|
curl_multi_close($mh);
|
|
|
|
echo $results1;
|
|
echo $results2;
|
|
|
|
?>
|
|
--EXPECT--
|
|
User-agent: *
|
|
Disallow: /backend/
|
|
Disallow: /distributions/
|
|
Disallow: /stats/
|
|
Disallow: /source.php
|
|
Disallow: /search.php
|
|
Disallow: /mod.php
|
|
Disallow: /manual/add-note.php
|
|
|
|
Disallow: /harming/humans
|
|
Disallow: /ignoring/human/orders
|
|
Disallow: /harm/to/self
|
|
|
|
CURL2
|
|
|