I would like to know if it is possible to read $_SESSION attributes without locking it.
Currently, session_start() locks SESSION, that means other PHP processes will wait until it is unlocked.
But, some processes just want to get some $_SESSION variables, not to write on them.
Is that possible to implement some function like session_get(string $id) which doesn't lock SESSION?
Ayrıca, kullanıcı session_id('shared_vars_of_'.$userid) kullanarak, örneğin, aynı hesaba giriş yapınca, tarayıcılar arasında seans paylaşmak mümkün. Ancak, bu güvenli? Bu cesareti var mı?
Thanks,
Nuno