First post:
andr3a wrote: Hello guys, I've viewed your php code and I thinks it's not much optimized for this simple cool idea.
Here You can view two...
Latest post:
vrana wrote: PHP uses copy-on-write, so code $a = $b; doesn't copy any memory. Thus code $a = &$b; is in fact slower than $a = $b;. Enlightm...