frank-lar/sse
Composer 安装命令:
composer require frank-lar/sse
包简介
An easy-to-use, object-oriented PHP library for Server-Sent Events
README 文档
README
An easy-to-use, object-oriented library for Server-Sent Events.
This repository was originally forked from tonyhhyip/libSSE-php Some options were added to make it work with PHP-FastCGI setups where FastCgi own output buffering cannot be disabled.
If you are running on PHP-FastCGI:
- Check your fcgid.conf file for FcgidOutputBufferSize parameter: it shouldn't be greater than 8192 (8K) for best results.
- Init SSE with content_encoding_none = true and close_connection = true. You may need to set pad_response_data to a value equal or slightly greater than FcgidOutputBufferSize
Installation
To install this package you'll need composer.
Run composer require frank-lar/sse
Usage
Server-side(PHP):
<?php require_once('/path/to/vendor/autoload.php'); //Load with ClassLoader use Sse\Event; use Sse\SSE; //create the event handler class YourEventHandler implements Event { public function update(){ //Here's the place to send data return 'Hello, world!'; } public function check(){ //Here's the place to check when the data needs update return true; } } $sse = new SSE(); //create a libSSE instance $sse->addEventListener('event_name', new YourEventHandler());//register your event handler $sse->start();//start the event loop ?>
Client-side(javascript):
var sse = new EventSource('path/to/your/sse/script.php'); sse.addEventListener('event_name',function(e){ var data = e.data; //handle your data here },false);
Settings
After you created the libSSE instance, there's some settings for you to control the behaviour. Below is the settings provided by the library.
<?php require_once('/path/to/vendor/autoload.php'); //Load with ClassLoader use Sse\SSE; $sse = new SSE(); $sse->set($property, $value);
Direct access of property is kept with magic method for backward compatible.
<?php require_once('/path/to/vendor/autoload.php'); //Load with ClassLoader use Sse\SSE; $sse = new SSE(); $sse->exec_limit = 10; //the execution time of the loop in seconds. Default: 600. Set to 0 to allow the script to run as long as possible. $sse->sleep_time = 1; //The time to sleep after the data has been sent in seconds. Default: 0.5. $sse->client_reconnect = 10; //the time for the client to reconnect after the connection has lost in seconds. Default: 1. $sse->use_chunked_encodung = true; //Use chunked encoding. Some server may get problems with this and it defaults to false $sse->keep_alive_time = 600; //The interval of sending a signal to keep the connection alive. Default: 300 seconds. $sse->allow_cors = true; //Allow cross-domain access? Default: false. If you want others to access this must set to true. $sse->content_encoding_none = false; // Disable compression in case content length is compressed (useful with php-fastcgi) $sse->close_connection = false; // Send a "Connection: close" header before flush (useful with php-fastcgi) $sse->pad_response_data = 0; // Concatenate N "\n" characters to force output buffer flushing ?>
Updates
- Add Support of Symfony Http Foundation Compoent
- SSE use magic method instead of direct access
- Add Redis and Memcahce Mechnism
- Add SessionLike Mechnism
- Fixed event loop handling where removing handlers at runtime can result in a broken state.
- Use Symfony HttpFoundation StreamedResponse to replace the old version
- Add Changelog and contributing guide.
- Add options useful with some php-fastCgi setups.
- Add option to pad data with "\n" characters to force output buffer flushing.
Special For PHP 5.3 and 5.4
If you see and error message like your PHP version does not satisfy that requirement.,
please remove composer.lock and re-install it.
Documentation
You may find it here. https://github.com/licson0729/libSSE-php/wiki/libSSE-docs
Development
This is an active project. If you want to help me please suggest ideas to me and track issues or find bugs. If you like it, please consider star it to let more people know.
Compatibility
Because server-sent events is a new standard and still in flux, only certain browsers support it.
However, polyfill for server-sent events is available.
Also on shared hosting, it may disable PHP's set_time_limit function and the library may not work as excepted.
There's some settings in the library that can fix it.
Integration with Frameworks
Symfony
<?php use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Sse\SSE; class DefaultController extends Controller { /** * @Route("/sse", name="sse") */ public function sseAction() { $sse = new SSE(); // Add your event listener return $sse->createResponse(); } }
Laravel
Please use laravel-sse.
Yii2
Please use yii2-sse.
Contribution
Please see the CONTRIBUTING.md.
frank-lar/sse 适用场景与选型建议
frank-lar/sse 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.11k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 02 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「sse」 「Server-Sent Events」 「php-sse」 「EventStream」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 frank-lar/sse 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 frank-lar/sse 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 frank-lar/sse 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Instant real-time updates. Lightweight EventSource client receiving live messages via HTML5 Server-Sent Events (SSE). Fast stream processing built on top of ReactPHP's event-driven architecture.
Библиотека для реализаций паттерна Pub/Sub
Wireless Cross-Component Communication
A simple EventSource / SSE (Server-Sent Events) client.
A powerful event calendar Tool for Laravel's Nova 5.
Command bus implementation: Commands and domain events
统计信息
- 总下载量: 1.11k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-02-27