How to make PHP generate Chunked response

后端 未结 9 2059
渐次进展
渐次进展 2020-11-28 06:32

I googled for this problem but there is no answer for it.

I want my PHP script to generate HTTP response in chunked( http://en.wikipedia.org/wiki/Chunked_transfer_en

9条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 07:02

    Working sample as of 16.02.2013

    
    
    
        
            
            Title
        
        
            ');
                flush();
                ob_flush();
            }
            sleep(1); // needed for last animation
            ?>
        
    
    

提交回复
热议问题