1--TEST--
2array stream_get_wrappers ( void );
3--CREDITS--
4marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br
5--FILE--
6<?php
7print((is_array(stream_get_wrappers())) ? ("yes") : ("Test 'array stream_get_wrappers ( void );' has failed"));
8echo "\n";
9class Foo { }
10stream_wrapper_register("foo", "Foo");
11var_dump(in_array("foo", stream_get_wrappers()));
12?>
13--EXPECT--
14yes
15bool(true)
16