mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
16 lines
387 B
PHP
16 lines
387 B
PHP
--TEST--
|
|
array stream_get_transports ( 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_transports())) ? ("yes") : ("Test 'array stream_get_transports ( void );' has failed"));
|
|
?>
|
|
--EXPECT--
|
|
yes
|