1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 15:08:16 +02:00
Files
archived-php-src/ext/standard/tests/network/http-stream.phpt
T
2008-03-08 19:08:25 +00:00

15 lines
260 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";
?>
--EXPECTF--
ALIVE