1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00

test to function stream_get_wrappers();

This commit is contained in:
marcosptf
2015-12-11 10:43:20 -02:00
committed by Julien Pauli
parent 7e399566a7
commit e9d1dff514

View File

@@ -0,0 +1,16 @@
--TEST--
array stream_get_wrappers ( void );
--CREDITS--
marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
--SKIPIF--
<?php
if (phpversion() < "5.3.0") {
die('SKIP php version so lower.');
}
?>
--FILE--
<?php
print((is_array(stream_get_wrappers())) ? ("yes") : ("Test 'array stream_get_wrappers ( void );' has failed"));
?>
--EXPECT--
yes