12 Star 26 Fork 7

随风星海 / Ohsce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
udpclientExample.php 622 Bytes
一键复制 编辑 原始数据 按行查看 历史
随风星海 提交于 2017-02-09 23:31 . V0.2.0更新 20170209
<?php
/*
OHSCE_V0.2.0_B
高可靠性的PHP通信框架。
HTTP://WWW.OHSCE.ORG
@作者:林友哲 393562235@QQ.COM
作者保留全部权利,请依照授权协议使用。
*/
ini_set('memory_limit',"88M");//重置php可以使用的内存大小为64M
set_time_limit(0);
ob_implicit_flush(1);
include('loadohsce.php');
Ohsce_eng_socket_client($ohsceclient,'udp',7628); //创建一个TCP客户端资源并连接27.0.0.1:7628
Ohsce_socketsend($ohsceclient['socket'],'hello',0,0,'127.0.0.1',7628);
Ohsce_socketrecvfrom($ohsceclient['socket'],$buf,0,0,$from,$port); //收取回复数据
echo $buf.'|'.$from.':'.$port;
sleep(30);
PHP
1
https://gitee.com/SFXH/Ohsce.git
git@gitee.com:SFXH/Ohsce.git
SFXH
Ohsce
Ohsce
master

搜索帮助