Re: [PHP] equivalent of perl's ithread

2006-03-11 Thread Miles Thompson
At 06:33 AM 3/11/2006, Khai wrote: As of perl 5.6, perl has a concept of interpreter thread (called ithread). Basically, any variable that you want to be shared across threads, you have to explicitly shared it. This apply not only to regular variables, but also apply to super global variable

[PHP] equivalent of perl's ithread

2006-03-11 Thread Khai
As of perl 5.6, perl has a concept of interpreter thread (called ithread). Basically, any variable that you want to be shared across threads, you have to explicitly shared it. This apply not only to regular variables, but also apply to super global variables such as $_, making it easy to writ