How to make For Loop Real Time in PHP

前端 未结 3 1111
被撕碎了的回忆
被撕碎了的回忆 2021-01-24 06:27

I want to Make a Script which give result realtime .

In My Script it have 3 steps .

1st step was to grab all links from a webpage .(i use pregmatch_all function

相关标签:
3条回答
  • 2021-01-24 06:50

    use ajax. (run script in background and poll for current state)

    http://jqueryui.com/demos/progressbar/

    http://api.jquery.com/get

    0 讨论(0)
  • 2021-01-24 06:52

    Reading up on output buffering, output flushing and related topics is definitely a good idea if you are serious about PHP web development.

    0 讨论(0)
  • 2021-01-24 07:06

    Flush() would help you.

    0 讨论(0)
提交回复
热议问题