I'm ascking about the existance of a kind of predefined class or package for threads in php. And how to realise it?
Thanks for any help
As far as I know PHP does not support threading or forking. 🙁
Threading in languages like PHP???
Hmm... php C code might be multithreaded, but if you want to write threaded programs in PHP -> I don't think that you can do that.
I suggest you consider something like C. glibc comes with thread library.
Di
Check out the PHP manual for the function:
tick()
It's primitive, but if you need some form of multitasking it works.