tags:

views:

93

answers:

2

Open Source PHP script for HTTP streaming?

Does anyone know something about such things?

A: 

This is built directly into PHP as of 4.3, check out streams.

Are you looking for a wrapper class?

evolve
A: 

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.

Morgan Cheng