mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
22 lines
475 B
PHP
22 lines
475 B
PHP
--TEST--
|
|
Test curl_getinfo() function with CURLINFO_HTTP_CODE parameter
|
|
--CREDITS--
|
|
Jean-Marc Fontaine <jmf@durcommefaire.net>
|
|
--SKIPIF--
|
|
<?php include 'skipif.inc'; ?>
|
|
--FILE--
|
|
<?php
|
|
include 'server.inc';
|
|
$host = curl_cli_server_start();
|
|
|
|
$url = "{$host}/get.inc?test=";
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_exec($ch);
|
|
var_dump(curl_getinfo($ch, CURLINFO_HTTP_CODE));
|
|
curl_close($ch);
|
|
?>
|
|
--EXPECT--
|
|
Hello World!
|
|
Hello World!int(200)
|