1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 01:18:19 +02:00
Files
archived-php-src/ext/standard/tests/network/http-stream.phpt
Ilija Tovilo f39b5c4c25 Close PHP tags in tests
Closes GH-12422
2023-10-18 17:34:10 +02:00

26 lines
445 B
PHP

--TEST--
http-stream test
--EXTENSIONS--
dom
--SKIPIF--
<?php
if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
require __DIR__.'/../http/server.inc';
http_server_skipif();
?>
--INI--
allow_url_fopen=1
--FILE--
<?php
require __DIR__.'/../http/server.inc';
['pid' => $pid, 'uri' => $uri] = http_server([__DIR__."/news.rss"]);
$d = new DomDocument;
$e = $d->load("$uri/news.rss");
echo "ALIVE\n";
http_server_kill($pid);
?>
--EXPECT--
ALIVE