mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
Current run-tests.php script produces the `*.php` files from the *.phpt. So all *.php files in tests folders are ignored by Git. To avoid confusion and to for bettere consistency this patch renames two remaining tests/*/*.php files to *.inc and *.phar as current practice in *.phpt files. - The `ext/curl/tests/resonder/get.php` to .inc extension - The `ext/phar/tests/files/pear2coverage.phar.php` to .phar extension
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
--TEST--
|
|
Test curl_opt() function with CURLOPT_WRITEFUNCTION parameter set to a closure
|
|
--CREDITS--
|
|
?
|
|
TestFest 2009 - AFUP - Jean-Marc Fontaine <jmf@durcommefaire.net>
|
|
--SKIPIF--
|
|
<?php include 'skipif.inc'; ?>
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : bool curl_setopt(resource ch, int option, mixed value)
|
|
* Description: Set an option for a cURL transfer
|
|
* Source code: ext/curl/interface.c
|
|
* Alias to functions:
|
|
*/
|
|
|
|
include 'server.inc';
|
|
$host = curl_cli_server_start();
|
|
|
|
// start testing
|
|
echo '*** Testing curl_setopt($ch, CURLOPT_WRITEFUNCTION, <closure>); ***' . "\n";
|
|
|
|
$url = "{$host}/get.inc?test=get";
|
|
$ch = curl_init();
|
|
$alldata = '';
|
|
ob_start(); // start output buffering
|
|
curl_setopt($ch, CURLOPT_URL, $url); //set the url we want to use
|
|
curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $data) {
|
|
$GLOBALS['alldata'] .= $data;
|
|
return strlen ($data);
|
|
});
|
|
|
|
curl_exec($ch);
|
|
curl_close($ch);
|
|
ob_end_flush();
|
|
echo "Data: $alldata";
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
*** Testing curl_setopt($ch, CURLOPT_WRITEFUNCTION, <closure>); ***
|
|
Data: Hello World!
|
|
Hello World!===DONE===
|