mirror of
https://github.com/php/php-src.git
synced 2026-04-19 05:51:02 +02:00
15 lines
259 B
PHP
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
|