claudiograssia/zf2socket
Composer 安装命令:
composer require claudiograssia/zf2socket
包简介
Socket server for zend 2
README 文档
README
Installation
with Composer and install dependecies hoa\socket.
{
"require": {
"claudiograssia/zf2socket": "0.0.1-dev"
}
}
The first step after installation, write into config/application.config.php
return array( 'modules' => array( "Zf2Socket", "Application", "etc" ) )
start test socket into terminal with this command
myprojectzf2/public php index.php socket test
or use
Example Use
will be use with zendframework 2.
And it is be start with console router. Create a console become this example
module.config.php
return array( 'console' => array( 'router' => array( 'routes' => array( 'indexer' => array( 'options' => array( 'route' => 'socket', 'defaults' => array( 'controller' => 'Application\Controller\Index', 'action' => 'index' ) ) ) ), ), ) )
class IndexController extends AbstractActionController { public function indexAction() { $server = $this->getServerService(); $server->init('tcp://127.0.0.1:4242', function($server) { $line = $server->readLine(); if (empty($line)) { $server->disconnect(); continue; } echo '< ', $line, "\n"; $server->writeLine(strtoupper($line)); }); } /** * @return \Zf2Socket\Service\Server */ protected function getServerService() { return $this->getServiceLocator()->get('SocketServer'); } }
Start socket with command into terminal
myprojectzf2/public php index.php socket
and it will can be use with terminal
$ telnet 127.0.0.1 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. test test
or it will can be use with python
import socket import sys # Create a TCP/IP socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # Connect the socket to the port where the server is listening server_address = ('127.0.0.1', 4242) print >>sys.stderr, 'connecting to %s port %s' % server_address sock.connect(server_address)
License
This library is a free project and it can be use for any project.
Attention read also license dependencies this library.
THANX FOR HAVE READ THIS DOCUMENT
claudiograssia/zf2socket 适用场景与选型建议
claudiograssia/zf2socket 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 06 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「library」 「zend」 「zf2」 「server」 「Socket」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 claudiograssia/zf2socket 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 claudiograssia/zf2socket 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 claudiograssia/zf2socket 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
LosLog provides some log utility
EdpModuleLayouts is very simple Laminas module for making module-specific layouts insanely easy.
Polyfill for mb_ereg(), mb_eregi(), mb_ereg_match(), and mb_ereg_replace*() functions; primary use case is for mbstring on Windows 7.4+
Zend Framework module to leverage the symfony dependency injection container
RCM User HTML views/pages
Zend Framework 1 Http package
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL
- 更新时间: 2015-06-18