Open Source PHP script for HTTP streaming?
Open Source PHP script for HTTP streaming?
Does anyone know something开发者_如何学C about such things?
This is built directly into PHP as of 4.3, check out streams.
Are you looking for a wrapper class?
PHP is a bad choice for HTTP streaming. If HTTP streaming is implemented in PHP, each streaming will occupy one thread/process in server. That doesn't scale well.
精彩评论