hi, is php multi-threaded? how about when php is used as a server-side app to process info (meaning that it is activated thru sockets, command line, client-side program etc. and NOT thru a web browser), is it multi-threaded?
thanks!
-Mick
No, PHP is not multi-threaded. One script doesn't know anything about the other. You can make it multi-threaded using shared memory, but that's complex.
You can mimic multi-threading by letting your inetd control the scripts.