1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 05:51:02 +02:00
Files
archived-php-src/ext/standard/tests/network/http-stream.phpt
Steph Fox 08253045d4 - killed off UEXPECT
- no getmxrr() under doze
2008-05-27 07:41:44 +00:00

15 lines
259 B
PHP

--TEST--
http-stream test
--SKIPIF--
<?php if (!extension_loaded("dom")) die("skip dom extension is not present"); ?>
--INI--
allow_url_fopen=1
--FILE--
<?php
$d = new DomDocument;
$e = $d->load("http://php.net/news.rss");
echo "ALIVE\n";
?>
--EXPECT--
ALIVE