mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
17 lines
363 B
PHP
17 lines
363 B
PHP
--TEST--
|
|
getprotobynumber function basic test
|
|
--CREDITS--
|
|
edgarsandi - <edgar.r.sandi@gmail.com>
|
|
--SKIPIF--
|
|
<?php
|
|
if(in_array(PHP_OS_FAMILY, ['BSD', 'Darwin', 'Solaris', 'Linux'])){
|
|
if (!file_exists("/etc/protocols")) die("skip reason: missing /etc/protocols");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(getprotobynumber(6));
|
|
?>
|
|
--EXPECT--
|
|
string(3) "tcp"
|