php-8.0.30-src/ext/standard/tests/file/stream_rfc2397_001.phpt

21 lines
298 B
PHP

--TEST--
Stream: RFC2397 getting the data
--INI--
allow_url_fopen=1
--FILE--
<?php
$data = 'data://,hello world';
var_dump(file_get_contents($data));
$file = fopen($data, 'r');
unset($data);
var_dump(stream_get_contents($file));
?>
--EXPECT--
string(11) "hello world"
string(11) "hello world"