Re: [PHP] Zend memory manager

2011-01-23 Thread Adi Mutu
Of course I have tried, but nothing ... The results or only aboyt emalloc/pemalloc familly. Nothing lower level about how these 2 functions are implemented or about the mm_heap struct of mm_block.

RE: [PHP] Different sessions, same client

2011-01-23 Thread Tommy Pham
> -Original Message- > From: Tommy Pham [mailto:tommy...@gmail.com] > Sent: Sunday, January 23, 2011 5:23 PM > To: 'Paul M Foster' > Cc: 'php-general@lists.php.net'; 'Thijs Lensselink' > Subject: RE: [PHP] Different sessions, same client > > > -Original Message- > > From: Thijs Len

RE: [PHP] Different sessions, same client

2011-01-23 Thread Tommy Pham
> -Original Message- > From: Thijs Lensselink [mailto:d...@lenss.nl] > Sent: Sunday, January 23, 2011 12:21 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Different sessions, same client > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 01/23/2011 07:33 AM, Paul M Foster

RE: [PHP] Zend memory manager

2011-01-23 Thread Tommy Pham
> -Original Message- > From: Adi Mutu [mailto:adi_mut...@yahoo.com] > Sent: Sunday, January 23, 2011 12:14 PM > To: Daniel Brown > Cc: php-general@lists.php.net > Subject: Re: [PHP] Zend memory manager > > > > I have looked at the sources, but it's still not very clear to me > Where

Re: [PHP] email address syntax checker

2011-01-23 Thread Govinda
> Trying to finish a PHP book while watching the Packers is not working > for me too well. ;-) yeah.. me trying to keep up with the php list, follow streams of thought from the posts that lead to things I need to yet learn, make time off from my other-language/full-time work.. wishing I could

Re: [PHP] email address syntax checker

2011-01-23 Thread Donovan Brooke
Govinda wrote: [snip] Hi D :-) I was following along.. also felt pleased to be introduced to filter_var ... and then happened to see this: http://us3.php.net/manual/en/function.filter-var.php [snip] "Note that FILTER_VALIDATE_EMAIL used in isolation is not enough for most (if not all) web

Re: [PHP] Different sessions, same client

2011-01-23 Thread Paul M Foster
On Sun, Jan 23, 2011 at 11:45:30AM -0500, tedd wrote: > At 11:02 AM + 1/23/11, Ashley Sheridan wrote: > >On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: > > > >> -BEGIN PGP SIGNED MESSAGE- > >> Hash: SHA1 > >> > >> On 01/23/2011 07:33 AM, Paul M Foster wrote: > >> > Storing

Re: [PHP] email address syntax checker

2011-01-23 Thread Ashley Sheridan
On Sun, 2011-01-23 at 14:59 -0500, Govinda wrote: > > Peter Lind wrote: > > [snip] > >> if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { > >> echo "Bad user! Bad user!"; > >> } > >> > >> Regards > >> Peter > > > > > > thanks peter... wish I would have known about filter_var before > > writ

Re: [PHP] Zend memory manager

2011-01-23 Thread Adi Mutu
I have looked at the sources, but it's still not very clear to me Where should I ask this question than.? Sorry for the inconveniences! Thanks,

Re: [PHP] email address syntax checker

2011-01-23 Thread Govinda
> Peter Lind wrote: > [snip] >> if (!filter_var($email, FILTER_VALIDATE_EMAIL)) { >> echo "Bad user! Bad user!"; >> } >> >> Regards >> Peter > > > thanks peter... wish I would have known about filter_var before > writing the other checkers. ;-) Hi D :-) I was following along.. also felt

Re: [PHP] Zend memory manager

2011-01-23 Thread Daniel Brown
On Sun, Jan 23, 2011 at 09:10, Adi Mutu wrote: > Hello, > > This is my first mail here, i hope it's ok. > Can somebody give me any hint to some docs about how the Zend mm works? I > can't > find any references on the net. > I'm not interested in only emalloc, efree etc. but at an even lower l

Re: [PHP] Different sessions, same client

2011-01-23 Thread tedd
At 11:02 AM + 1/23/11, Ashley Sheridan wrote: On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote: > Storing any sort of login/auth data in cookies has regularly been panned > on this list

[PHP] Zend memory manager

2011-01-23 Thread Adi Mutu
Hello, This is my first mail here, i hope it's ok. Can somebody give me any hint to some docs about how the Zend mm works? I can't find any references on the net. I'm not interested in only emalloc, efree etc. but at an even lower level i mean about functions like _zend_mm_alloc_int, _zend_

[PHP] Zend Memory Manager

2011-01-23 Thread Adi Mutu
Hello, This is my first mail here, i hope it's ok. Can somebody give me any hint to some docs about how the Zend mm works? I can't find any references on the net. I'm not interested in only emalloc, efree etc. but at an even lower level i mean about functions like _zend_mm_alloc_int, _zen

Re: [PHP] Different sessions, same client

2011-01-23 Thread Ashley Sheridan
On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 01/23/2011 07:33 AM, Paul M Foster wrote: > > Storing any sort of login/auth data in cookies has regularly been panned > > on this list. The preference seems to be to store whatever

Re: [PHP] Different sessions, same client

2011-01-23 Thread Thijs Lensselink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote: > Storing any sort of login/auth data in cookies has regularly been panned > on this list. The preference seems to be to store whatever login/auth > information *must* be stored in the $_SESSION variable. >