/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/sockets/tests/socket_send.phpt
51 строка
1 KB
Nikita Popov
Migrate SKIPIF -> EXTENSIONS (#7138)
11 июн 2021, 12:57
Не верифицирован
11 июн 2021, 12:57
7485978
Код
Авторство
О чём код?
--TEST-- int socket_send ( resource $socket , string $buf , int $len , int $flags ); --CREDITS-- marcosptf - <marcosptf@yahoo.com.br> - #phparty7 - @phpsp - novatec/2015 - sao paulo - br --EXTENSIONS-- sockets --SKIPIF-- <?php if (getenv("SKIP_ONLINE_TESTS")) die("skip online test"); ?> --FILE-- <?php $port = 80; $host = "yahoo.com"; $stringSocket = "send_socket_to_connected_socket"; $stringSocketLength = strlen($stringSocket); $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); $socketConn = socket_connect($socket, $host, $port); if(socket_send($socket, $stringSocket, $stringSocketLength, MSG_OOB)===$stringSocketLength){ print("okey\n"); } if(!defined('MSG_EOR') || socket_send($socket, $stringSocket, $stringSocketLength, MSG_EOR)===$stringSocketLength){ print("okey\n"); } if(!defined('MSG_EOF') || socket_send($socket, $stringSocket, $stringSocketLength, MSG_EOF)===$stringSocketLength){ print("okey\n"); } if(socket_send($socket, $stringSocket, $stringSocketLength, MSG_DONTROUTE)===$stringSocketLength){ print("okey\n"); } ?> <?php socket_close($socket); unset($port); unset($host); unset($stringSocket); unset($stringSocketLength); unset($socket); unset($socketConn); ?> --EXPECT-- okey okey okey okey