Re: [PHP-DEV] allow_url_fopen / allow_url_include and fine grained control

2007-01-21 Thread Richard Lynch
On Tue, January 16, 2007 7:07 pm, Sara Golemon wrote: > allow_url_fopen and allow_url_include continue to accept boolean flags > in order to behave just as they do now: true/on allows anything, > false/off allows only those wrappers without the is_url bit set. +1, fwiw. As far as the "user" bei

Re: [PHP-DEV] Is this what Stefan Esser was referring to ...?

2007-01-21 Thread Hartmut Holzgraefe
Robert Cummings wrote: Sounds like PHP should have been trademarked [...] i don't know about the rest of the world, but here in .de you won't get a trademark on a 3 letter name anymore, and this has been so for quite a while, afaict since far before PHP came to light ... -- Hartmut Holzgraefe,

Re: [PHP-DEV] Is this what Stefan Esser was referring to ...?

2007-01-21 Thread Robert Cummings
On Mon, 2007-01-22 at 10:27 +1100, Rasmus Lerdorf wrote: > Alain Williams wrote: > > On Mon, Jan 22, 2007 at 10:08:16AM +1100, Rasmus Lerdorf wrote: > > > >> From a bigger perspective, the reason we prefer people to not use the > >> PHP name for their projects, especially modified versions of PHP

Re: [PHP-DEV] Is this what Stefan Esser was referring to ...?

2007-01-21 Thread Rasmus Lerdorf
Alain Williams wrote: > On Mon, Jan 22, 2007 at 10:08:16AM +1100, Rasmus Lerdorf wrote: > >> From a bigger perspective, the reason we prefer people to not use the >> PHP name for their projects, especially modified versions of PHP itself, >> is that in the extreme case we want to avoid someone rel

Re: [PHP-DEV] Is this what Stefan Esser was referring to ...?

2007-01-21 Thread Ilia Alshanetsky
On 21-Jan-07, at 6:12 PM, Alain Williams wrote: On Mon, Jan 22, 2007 at 10:08:16AM +1100, Rasmus Lerdorf wrote: From a bigger perspective, the reason we prefer people to not use the PHP name for their projects, especially modified versions of PHP itself, is that in the extreme case we want

Re: [PHP-DEV] Is this what Stefan Esser was referring to ...?

2007-01-21 Thread Alain Williams
On Mon, Jan 22, 2007 at 10:08:16AM +1100, Rasmus Lerdorf wrote: > From a bigger perspective, the reason we prefer people to not use the > PHP name for their projects, especially modified versions of PHP itself, > is that in the extreme case we want to avoid someone releasing PHP 7 on > us. That w

Re: [PHP-DEV] Is this what Stefan Esser was referring to ...?

2007-01-21 Thread Rasmus Lerdorf
Paul Reinheimer wrote: > I think it's rather extreme to be directing any animosity towards > Chris Shiflett on this particular issue, since while he leads that > group, he isn't the lead for that project. I would also not that to > the best of my knowledge (being on that team) that no one has > att

Re: [PHP-DEV] what means is 'CC' and 'DC' in the 'TSRMLS_CC' and'TSRMLS_DC'?

2007-01-21 Thread Sara Golemon
I know that the 'TSRMLS' is an abbreviation of 'Thread Safe Resource Manager Local Storage', but what means is 'CC' and 'DC' in the 'TSRMLS_CC' and 'TSRMLS_DC' ? This has been asked multiple times before on this list, but once again: _CC - call with comma _C - call (without comma) _DC - dec

[PHP-DEV] CVS Account Request: abdelmalek65

2007-01-21 Thread ka ka
abdelmalek65 -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] what means is 'CC' and 'DC' in the 'TSRMLS_CC' and'TSRMLS_DC' ?

2007-01-21 Thread Tim Starling
Johannes Schlüter wrote: > Hi, > > On Mon, 2007-01-22 at 04:11 +0800, yAnbiN wrote: >> Hi! >> I know that the 'TSRMLS' is an abbreviation of 'Thread Safe Resource Manager >> Local Storage', but what means is 'CC' and 'DC' in the 'TSRMLS_CC' and >> 'TSRMLS_DC' ? > > This has been asked multiple

Re: [PHP-DEV] what means is 'CC' and 'DC' in the 'TSRMLS_CC' and 'TSRMLS_DC' ?

2007-01-21 Thread Johannes Schlüter
Hi, On Mon, 2007-01-22 at 04:11 +0800, yAnbiN wrote: > Hi! > I know that the 'TSRMLS' is an abbreviation of 'Thread Safe Resource Manager > Local Storage', but what means is 'CC' and 'DC' in the 'TSRMLS_CC' and > 'TSRMLS_DC' ? This has been asked multiple times before on this list, but once ag

[PHP-DEV] what means is 'CC' and 'DC' in the 'TSRMLS_CC' and 'TSRMLS_DC' ?

2007-01-21 Thread yAnbiN
Hi! I know that the 'TSRMLS' is an abbreviation of 'Thread Safe Resource Manager Local Storage', but what means is 'CC' and 'DC' in the 'TSRMLS_CC' and 'TSRMLS_DC' ? -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Is this what Stefan Esser was referring to ...?

2007-01-21 Thread Paul Reinheimer
I think it's rather extreme to be directing any animosity towards Chris Shiflett on this particular issue, since while he leads that group, he isn't the lead for that project. I would also not that to the best of my knowledge (being on that team) that no one has attempted to bring it up with the p

Re: [PHP-DEV] PHP Object-Caching and Reference Counting

2007-01-21 Thread Paweł Stradomski
On 21 jan 2007 Lars Schultz wrote: > >Perhaps you could use your own reference counting? > >Keep your "real" objects in private array and instead of returning them > > return a simple object which would forward all methods and properties by > > __get/__set/__call. The constructor would increase you

[PHP-DEV] Re: PHP Object-Caching and Reference Counting

2007-01-21 Thread Lars Schultz
Andreas Korthaus wrote: Some time ago I created a patch to implement a ref_count() function which works the way you suggested. But I'm not sure if it's OK/complete... and I'm not sure if something like that is really needed in the core (and I'm definetly not the person to decide on that ;-)).

Re: [PHP-DEV] PHP Object-Caching and Reference Counting

2007-01-21 Thread Lars Schultz
Note that the engine does not guarantee you any particular value of the refcount. Passing parameters around, accessing variables, etc. may change the refcount. One thing the engine guarantees you is that once no links to the variable exist it would be destroyed (which may not happen immediate

Re: [PHP-DEV] PHP Object-Caching and Reference Counting

2007-01-21 Thread Lars Schultz
Perhaps you could use your own reference counting? Keep your "real" objects in private array and instead of returning them return a simple object which would forward all methods and properties by __get/__set/__call. The constructor would increase your internal refcount by one, destructor woul

Re: [PHP-DEV] Plz help me. I can not login my account.

2007-01-21 Thread Nuno Lopes
We don't use cvs over ssl, just plain pserver auth. If you forgot your password, you can modify it at http://master.php.net/forgot.php Nuno - Original Message - Hi, all, Sorry for disturbing you. I cant login in my account "mikespook" with the passwords that I set up before. I d

[PHP-DEV] Plz help me. I can not login my account.

2007-01-21 Thread mikespook
Hi, all, Sorry for disturbing you. I cant login in my account "mikespook" with the passwords that I set up before. I dont know if I type a wrong passwords or I need more setup with the cvs client as SSL etc. Another problem is how I can modify my password with the cvs account. Thanks and Regar