php-src/ext/sockets/tests/socket_export_stream-1.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

25 lines
463 B
PHP

--TEST--
socket_export_stream: Basic test
--EXTENSIONS--
sockets
--FILE--
<?php
$domain = (strtoupper(substr(PHP_OS, 0, 3) == 'WIN') ? AF_INET : AF_UNIX);
socket_create_pair($domain, SOCK_STREAM, 0, $s);
$s0 = reset($s);
$s1 = next($s);
$stream = socket_export_stream($s0);
var_dump($stream);
socket_write($s1, "test message");
socket_close($s1);
var_dump(stream_get_contents($stream));
?>
--EXPECTF--
resource(%d) of type (stream)
string(12) "test message"