Re: [PHP-DEV] RE:

2008-10-27 Thread David Grudl
. There would have been anything that could have changed this without creating any sort of BC issues. From the possible namespace separators, \ was the best one as we could see. That's how it is, that's I will be glad for each separator, but :: is the best one :-)) David Grudl -- PHP

Re: [PHP-DEV] Namespace Resolution

2008-11-04 Thread David Coallier
a valid point with a subject, arguments, examples or at least ideas and a direction next time you post. Thanks, -- Slan, David

Re: [PHP-DEV] [RFC] Iteration tools

2008-11-04 Thread David Zülke
Am 03.11.2008 um 16:41 schrieb Marcus Boerger: 2) Ther are iterator_apply() owww that sounds like it really needs docs :> smime.p7s Description: S/MIME cryptographic signature

[PHP-DEV] Re: Namespace resolution rules has been changed?

2008-11-10 Thread David Grudl
artially qualified indentifiers" (Sub\Object) have to be written with preceding backslash. David Grudl My english is poor but I hope you understand me ;) -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Namespace resolution rules has been changed?

2008-11-10 Thread David Grudl
r namespace implementation does, and not like "relative path". David Grudl

[PHP-DEV] Re: Namespace resolution rules has been changed?

2008-11-11 Thread David Grudl
Původní zpráva Předmět: Re:Namespace resolution rules has been changed? Od: David Grudl <[EMAIL PROTECTED]> Datum: 10.11.2008 23:53 > Can you please point us to an example describing this best practice? For example Namespace Naming Guidelines in .N

[PHP-DEV] New SPL exceptions proposal

2008-11-11 Thread David Grudl
fails. */ class MemberAccessException extends LogicException {} David Grudl -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] quick polls for 5.3

2008-11-12 Thread David Coallier
> 8) MFH mcrypt cleanups in HEAD. either the make sense or they dont, so > either (choose one) > b) MFH to 5.3 +1 -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Namespace resolution rules has been changed?

2008-11-14 Thread David Grudl
tion alá 1) means, that namespace named foo\stuff is fiction - there is only namespace named \foo\stuff. Lets use \foo\stuff everywhere: namespace \foo\classes; use \foo\stuff as stuff; This is (at least) very ugly. David p.s. Save useless backslashes, save a peace :-) -- PHP Internals - P

[PHP-DEV] Re: Namespace resolution rules has been changed?

2008-11-17 Thread David Grudl
true, however i have a counter example: classes from more general namespace that use further nested classes (think some kind of behaviour and different drivers/plugins for example). so while it's true that more nested classes usually extend the less nested ones it also common for more generic

[PHP-DEV] Re: Namespace resolution rules has been changed?

2008-11-17 Thread David Grudl
'\\' . $class; } return new $class; } OMG David Grudl -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Namespace resolution rules has been changed?

2008-11-17 Thread David Grudl
> > Why? I have developed framework using PHP namespaces and studied Zend > > Framework source codes and result is: if we use the new resolution rules > > (1), than in nearly all cases developers must prefix class names with \, > > only in few cases prefix is not required. Why? Because usually

Re: [PHP-DEV] Re: Namespace resolution rules has been changed

2008-11-17 Thread David Grudl
I have downloaded last Mono source code (http://www.mono-project.com/, version 2.0.1), the open source version of one of the most complex and mature framework in the world, the .NET framework. Framework is written using namespaces (as opposite to current version of Zend). And I have analysed s

Re: [PHP-DEV] documentation

2008-11-19 Thread David Coallier
book really. Good luck, -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] SplHeap->key()

2008-11-19 Thread David Coallier
ug and assigning it to me please? Etienne/Marcus, do you mind if I go ahead? -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] New namespace implementation

2008-12-02 Thread David Grudl
ive when it is needed - using 'namespace' operator (as equivalent of the 'self' operator). So I think now there is no reason to use default relative resolving and it should be removed. What about voting? David Grudl -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] New namespace implementation

2008-12-02 Thread David Grudl
Hi! but it generates Warning: The use statement with non-compound name 'ArrayObject' has no effect. The warning is correct. It is not correct - the use statement has effect, as documented in manual http://php.net/manual/en/language.namespaces.importing.php. DG. -- PHP Internals - PHP Runt

Re: [PHP-DEV] New namespace implementation

2008-12-02 Thread David Grudl
Snapshot 5.3.0alpha3-dev acts like manual, I think the manual is correct. BTW - this is very useful feature. A "wrong-relative-resolving" rescuer ;) DG. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Ternary operator optimization tip

2008-12-14 Thread David Grudl
don't know how difficult it is to implement, but it can be very useful speed optimization for PHP 5.3 to improve ternary operator to use reference counting. David Grudl -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Removing basic types from our JSON parser

2008-12-14 Thread David Grudl
f apps. +1 In PHP there is no function for escaping JS strings and json_encode is useful compensation. I use it this way very often. David Grudl -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Ternary operator optimization tip

2008-12-14 Thread David Grudl
need to be optimized. The only time you can really tell its slower is in synthetic benchmarks. Few hundred operations involving ternary operator is nothing unusual ;) Původní zpráva Od: Alexey Zakhlestin On Sun, Dec 14, 2008 at 8:06 PM, David Grudl wrote: Do you have any

[PHP-DEV] __invoke() weirdness

2008-12-23 Thread David Zülke
m = Curry::create(array($d, 'format'), DATE_ATOM); echo $getAtom(); This gives a fatal "Call to undefined method DateTime::getAtom()" $d = new DateTime(); $d->getAtom = Curry::create(array($d, 'format'), DATE_ATOM); echo $d->getAtom(); Is that intentio

[PHP-DEV] Tip for 5.3: exceptions in __toString and __autoload

2008-12-25 Thread David Grudl
exceptions. Excellent feature of PHP 5.3 would be to resolve this errors. David Grudl

Re: [PHP-DEV] Proposal: array_flatten function

2008-12-26 Thread David Coallier
> > "cvs diff -u" against 5.3 branch shoould be ok for the start. > after positive review, "cvs diff -u" against HEAD would be needed to > I really have to say it, you should make your changes to HEAD __first__ then to 5.3. Not the other way around :) -- Slan

Re: [PHP-DEV] __invoke() weirdness

2008-12-28 Thread David Zülke
On 25.12.2008, at 06:11, Lars Strojny wrote: Hi David, Am Dienstag, den 23.12.2008, 17:02 +0100 schrieb David Zülke: [...] This gives a fatal "Call to undefined method DateTime::getAtom()" $d = new DateTime(); $d->getAtom = Curry::create(array($d, 'format'), DATE_AT

[PHP-DEV] PF 2009

2008-12-31 Thread David Grudl
PF 2009 for PHP internals! And good luck in finishing the PHP 5.3. David G. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] Re: [PHP-DEV] __invoke() weirdness

2009-01-01 Thread David Zülke
necessary; just curious for the most part. - David On 01.01.2009, at 17:06, Marcus Boerger wrote: Hello Hannes, as discussed online. At the moment we should not have any __get() calls during method resolution. The newly updated patch does that now. And I think we are now safe to submit

Re: [PHP-DEV] [RFC] Re: [PHP-DEV] __invoke() weirdness

2009-01-01 Thread David Zülke
Marcus, thanks! Why is it Test::{closure}() {closure}() and not Test::{closure}() Test::{closure}() in that test, though? Is it because func1() "was there" from the Engine's POV after the ctor was called? AFAICT, that's the only difference between the two. Ch

Re: [PHP-DEV] Private member/method access inconsistency

2009-01-06 Thread David Coallier
or add > call to __call() on private method invocation. The former approach presents > more of a BC > problem IMHO, so I am advocating the latter. I've attached a simple patch > for consideration. > I'd say go ahead, this sounds like common sense to be consistent in bot

Re: [PHP-DEV] [RFC] Re: [PHP-DEV] __invoke() weirdness

2009-01-06 Thread David Zülke
of what you can do with it). - David smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] display_errors = on

2009-01-08 Thread David Zülke
goood, too, while we're at it ;) - David smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] $_GET['a.b.c']

2009-01-13 Thread David Zülke
Am 13.01.2009 um 11:09 schrieb Alexey Zakhlestin: On Tue, Jan 13, 2009 at 12:32 PM, troels knak-nielsen wrote: In a recent mail, some kind of issue regarding queryparams was mentioned (Possibly related to namespaces). Could anybody explain what the issue is, or point to where it's discussed

Re: [PHP-DEV] [RFC] prototyping

2009-01-15 Thread David Zülke
verload) should have precedence over a closure in a property. Wouldn't that work? - David smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] [RFC] prototyping

2009-01-21 Thread David Zülke
Am 20.01.2009 um 18:41 schrieb Christian Seiler: Hi, maybe an IRC meeting is the easiest way to come to an agreement. How about tomorrow evening 21:00 CEST in #php.closures on freenode? Just for clarification: I assume you mean Wednesday, January 21st, 19:00 UTC (CEST == UTC+2) and thus 2

[PHP-DEV] Enhanced __CLASS__ constant

2009-01-21 Thread David Grudl
h magic contant: $obj = factory(MyClass::__CLASS__); // returns object Foo\MyClass, very understandable :-) $obj = factory(Bar::__CLASS__); // returns object Other\Bar, as use statement declares :-) David Grudl -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: GSoC 2009

2009-01-22 Thread David Zülke
I think that's a great idea. The normal weekly/bi-weekly reports could be CCed to internals@, with all discussion happening on gsoc@ - David Am 22.01.2009 um 09:04 schrieb Hannes Magnusson: On Thu, Jan 22, 2009 at 00:03, Elizabeth M Smith wrote: I think we really should encoura

Re: [PHP-DEV] Reserved namespaces

2009-01-23 Thread David Coallier
you are looking for is probably this. http://wiki.php.net/rfc/namespaces-for-internal-classes I know this has been discussed but I'm not sure if any decision has been made on that subject. Or if anyone had time to start digging into this issue further than discussions. Lars? Cheers, -- Slan, Dav

Re: [PHP-DEV] GSoC 2009

2009-01-24 Thread David Coallier
res to follow" page on the wiki and simply go from there? -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] GSoC 2009

2009-01-25 Thread David Zülke
hooks would be nice, so the tickets are annotated with links to the changesets. Right now, if I see someone's comment "Fixed in CVS HEAD and PHP_5_3", I need to look at the date, then go to the cvs mailing list or logs and find the respective commit. Cumbersome. - D

Re: [PHP-DEV] substr passing null...

2009-01-29 Thread David Zülke
sn't treated as not passing a value. The reason it worked with substr was by pure chance. Out of curiosity - how hard would it be to implement a "default" keyword that can be passed in function/method calls with the new parameter parsing API? - David smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] towards the next 5.3 release

2009-02-04 Thread David Zülke
cannot have different method signatures for different PHP versions. Good argument for adding a preprocessor, isn't it? :D - David smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] towards the next 5.3 release

2009-02-04 Thread David Zülke
there are 5.2.6, 5.2.7 and 5.2.8? Thanks, - David smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] towards the next 5.3 release

2009-02-05 Thread David Zülke
On 05.02.2009, at 17:32, Johannes Schlüter wrote: On Wed, 2009-02-04 at 13:12 +0100, David Zülke wrote: Am 03.02.2009 um 14:41 schrieb Lukas Kahwe Smith: http://bugs.php.net/bug.php?id=47206 - XSLT I looked through the CVS logs, could you confirm I understand it right: The type hint

Re: [PHP-DEV] RFC for new INI's

2009-02-11 Thread David Zülke
TRICT. auto_globals_jit shouldn't be on, IMO. - David smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] New INIs, Round Two.

2009-02-16 Thread David Zülke
On 17.02.2009, at 08:02, Eric Stewart wrote: 10. The production value of error_reporting has been changed to E_ALL | ~E_DEPRECATED. I guess you mean E_ALL & ~E_DEPRECATED smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] phar update

2009-02-21 Thread David Coallier
> > When I say working, I mean 100% of non-skipped tests passing, no compile > warnings. The tests exert 80% code coverage, mostly leaving untestable > stuff like errors that are only likely to occur when the disk crashes. > Seriously well done! Kudos -- Slan, David -- PHP

Re: [PHP-DEV] PHP 6 TODO list

2009-03-13 Thread David Coallier
hich I was proposing to mentor since you weren't there Andrei, but it basically got no attention whatsoever and not proposal from the students, thus no project :) Hope this helps a bit. -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 6 TODO list

2009-03-13 Thread David Coallier
t more % one the completion? I'd say that 69% is merely a change from the last 2 years. Anyways, issues with students and progress should be somewhat resolved this year with the new approach to student mentoring and student reporting tasks I'd say. -- Slan, David -- PHP In

Re: [PHP-DEV] Re: Focus on HEAD

2009-03-27 Thread David Coallier
2009/3/27 Hannes Magnusson : > 2009/3/27 Felipe Pena : >> Hello, >> just to inform, I've commited (yesterday) the patch removing the >> UG(unicode) checks, etc across all source (except mysql exts). As the >> patch has 492K, looks as no mail will be sent. > [...] Would you mind letting the list kn

Re: [PHP-DEV] Re: Focus on HEAD

2009-03-27 Thread David Coallier
  - convert_to_text -> convert_to_unicode >> +             - convert_to_text_ex -> convert_to_unicode_ex >> + >> +      (Felipe, Steph) > >  Yay you! > Only thing I have to say about this is: "Dar dar" sorry about this :) -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] GSoC - XDebug profiling web front-end

2009-03-31 Thread David Coallier
ll you that but xdebug web profiling was a project for last year. Please read http://wiki.php.net/gsoc/2009 for this years GSoC ideas. Cheers :) -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Update to Zend Highlighter

2009-04-02 Thread David Coallier
. Cool work, do we go by adding 6 new ini settings and making sure they are prefixed by default? Also I guess we'll have to attach a css file with that? Inline css at the top of the generated highlighted block maybe? -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Is it true that short_open_tag is deprecated in PHP 6?

2009-04-14 Thread David Zülke
As Jani put it: PLEASE, let the dead horse be! - David On 14.04.2009, at 17:11, Arvids Godjuks wrote: Hello everyone. I've been writing for some time now at the last project and it really sucks. I understand reason on depricating short_open_tag and I agree. But I have a proposal

Re: [PHP-DEV] How to contribute for PHP Internals

2009-05-14 Thread David Coallier
red of committing all your patches) and at some point you'll be granted with an account :) Good luck and welcome :) -- Slan, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Removing zend_hash_func in PHP 6.0

2009-05-26 Thread David Coallier
2009/5/26 David Soria Parra : > Hi List, > > I recently discovered that zend_hash_func is equal to zend_get_hash_value. > To clean this up, I would like to remove zend_hash_func in favor of > zend_get_hash in HEAD. If there are no objections I would commit a patch in > a few d

[PHP-DEV] zend_hash_update question

2009-06-15 Thread David Zülke
intentional? It seems that every internal feature that would like to deal with hashes needs to implement this string->int casting behavior of PHP itself. Why doesn't zend_hash_update() do it automatically? Cheers, David smime.p7s Description: S/MIME cryptographic signature

Re: [PHP-DEV] zend_hash_update question

2009-06-15 Thread David Zülke
On 15.06.2009, at 15:40, Matt Wilmas wrote: Hi David, Hey Matt, - Original Message - From: "David Zülke" Sent: Monday, June 15, 2009 Hi folks, while fixing http://bugs.php.net/bug.php?id=48557 I was wondering why zend_hash_update doesn't automatically convert

Re: [PHP-DEV] zend_hash_update question

2009-06-15 Thread David Zülke
Patch updated to reflect the change. It's against 5.3 btw. Now who will commit it so it makes it into the next RC? :) - David On 15.06.2009, at 15:47, David Zülke wrote: On 15.06.2009, at 15:40, Matt Wilmas wrote: Hi David, Hey Matt, - Original Message - From: "D

[PHP-DEV] SOAP_MARSHAL_DATETIME (or: bug #44383)

2009-06-22 Thread David Zülke
e than one case at a time. We didn't want to produce a million test files for the several variants; is there a nicer way to test this properly? This feature is enabled by a SoapClient "feature" called SOAP_MARSHAL_DATETIME. I think this is a reasonable choice. Greet

Re: [PHP-DEV] Re: Named arguments revisited

2006-01-15 Thread David Hall
Ron Korving wrote: mysqli mysqli_connect ( [string host [, string username [, string passwd [, string dbname [, int port [, string socket]] ) *cough*PDO*cough* ( http://us3.php.net/manual/en/ref.pdo-mysql.connection.php ) David Hall -- PHP Internals - PHP Runtime Development

Re: [PHP-DEV] JSON inclusion in core

2006-01-22 Thread David Zülke
JSON objects would have a lot of benefits. For instance, one could create JS functions or entire object structures which otherwise could not be expressed through PHP objects. - David Am 22.01.2006 um 09:50 schrieb Bart de Boer: Daniel Convissor wrote: Exactly what I was going to say. The

Re: [PHP-DEV] [PATCH] Late Static Binding

2006-03-01 Thread David Zülke
Your examples 1-4 are bad. They snould use non-static methodos. Wrong. Example: Singletons where you could just do "MyObj extends SingletonObj" without having to re-implement getInstance(). - David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, v

Re: [PHP-DEV] [PATCH] Late Static Binding

2006-03-02 Thread David Zülke
this:: would be excellent, since $this also references the actual class that's calling, not the one that declares. Very good idea! +1 - David Am 02.03.2006 um 20:14 schrieb Andi Gutmans: What about this:: ? Too confusing? At 08:33 AM 3/2/2006, Mike Lively wrote: Hallo, Firstly t

Re: [PHP-DEV] [PATCH] Late Static Binding (Take 2)

2006-03-08 Thread David Zülke
I'd still say we make it "this". It's reasonable and consistent. - David Am 09.03.2006 um 01:13 schrieb Andi Gutmans: This patch is a bit rough. I'll try and think if there's a more elegant way. Andi At 01:06 PM 3/8/2006, Mike Lively wrote: On Wed, 200

Re: [PHP-DEV] Give the Language a Rest motion

2006-03-09 Thread David Zülke
t of innovation, percection, advancement is what defines mankind. You shouldn't really try to stop that. It must be in the very interest of any language, even PHP, to get better over time. - David Am 09.03.2006 um 11:57 schrieb Zeev Suraski: I'd like to raise a motion to '

[PHP-DEV] CVS Account Request: wittend

2006-04-20 Thread David Witten
I am interested in taking over maintenance of the File_DICOM package PEAR. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Stop Breaking Our Apps For the Sake of OO

2006-05-12 Thread David Zülke
about purity, it should not be added. Purists may use other languages. -- Pierre I second that. Breaking BC in minor releases is nonsense. - David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Looking for an explanation

2006-06-20 Thread David Tulloh
lowups there. > > print ($life = "hard") -1; ($life="hard") assigns "hard" to $life and returns "hard" "hard" -1 casts "hard" to an integer to do a math operation, "hard" casts to 0 0 -1 is -1, so -1 is printed > print &quo

[PHP-DEV] CVS Account Request: aoyuxuan

2006-08-08 Thread liu david
download -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PECL-DEV] new gcov website

2006-10-09 Thread David Zülke
I guess that's because there is no "last week" to show ;) David Nuno Lopes wrote: Hello all, Today I've released the new version of the gcov website (http://gcov.php.net/). It already built a full PHP 5.2 release with most extensions enabled and it is now building P

[PHP-DEV] Re: Namespaces in PHP 6 - ++$take

2006-11-10 Thread David Lindstrom
Hello Internals. I'm not sure how many of you know about Phalanger [1][2]. For those who don't, it's a fairly complete PHP language compiler, compiling PHP5 sources into MSIL bytecodes, which can then be executed on the .NET platform or Mono. Since the .NET framework makes heavy use of namespac

Re: [PHP-DEV] Namespaces in PHP 6 - ++$take

2006-11-11 Thread David Zülke
y is not an argument against them. David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Namespaces in PHP 6 - ++$take

2006-11-11 Thread David Zülke
. The meeting notes much rather say "mmmh okay we'll think about it, and if we like the idea, Marcus is gonna implement it". I'm glad that was clarified now, thanks :) David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Namespaces in PHP 6 - ++$take

2006-11-11 Thread David Zülke
tant feature for us. Very wall said, Hans, and I totally agree. It's much needed, and I believe any FOSS project that is OO based would applaud the introduction of namespaces. David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: morse

2006-11-16 Thread David Morse
Contribute to both DB_Table and MDB2_Table. I've been corresponding with Mark Weisemann, who will approve this. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] How to release an experimental extension ?

2006-11-24 Thread OURY David
s and executing IMS transactions. Who should I discuss it with? What do I have to do? Thank you for your help. Regards, David OURY [EMAIL PROTECTED] -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] RE : [PHP-DEV] How to release an experimental extension ?

2006-11-27 Thread OURY David
Thank you for the tip. I engage the process right away :) The beta version of this extension works fine, but it still requires a few more features and more stabilization though. David OURY [EMAIL PROTECTED] -Message d'origine- De : Johannes Schlüter [mailto:[EMAIL PROTECTED] E

[PHP-DEV] Re: variable types

2006-12-09 Thread David Lindstrom
First of all, this doesn't seem like a very good idea to do.. My suggestions below are for the first idea (throw a warning/error if a variable changes type). Second, I have never hacked the engine, and don't really have any ideas on how it accutually works, I'm just guessing here. Next, my fir

[PHP-DEV] Re: variable types

2006-12-09 Thread David Lindstrom
With ze_fetch_arguments I meant zend_parse_parameters (just a small spelling error.. ;-) ) -- // DvDmanDT mail: dvdmandt¤telia.com msn: dvdmandt¤hotmail.com ""Corne"" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi, > > I was trying to make PHP a bit more type-safe, but until

Re: [PHP-DEV] Automatic Property Initialization

2013-10-09 Thread David Muir
less boilerplate code. Would fluid interfaces still be possible? public function setFoo($this->foo) { return $this; } Cheers, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] crypt() BC issue

2014-07-20 Thread David Muir
uo Ohgaki > yohg...@ohgaki.net Yasuo, Prehashing with sha512 means it is no longer blowfish. It is now a non-vetted DIY algorithm. The whole point of password_hash is to avoid this type of thing, and should be clearly discouraged in the documentation. It's a classic example of what not to do. David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: 5.3 final release

2014-07-22 Thread David Zuelke
get it into > 5.3. Once it stabilizes, we can backport it into 5.4, but for 5.3 better > safe than sorry. I’ll be working on a fix this week. If you can wait a few days, that’d be grand; if not, then no biggie. David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [PHP-DEV] RFC: Move phpng to master

2014-07-27 Thread David Dai
rmance gain. > > Cheers, > Mike > > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php Cheers, David Dai

Re: [PHP-DEV] Native support - PUT request, multipart form data

2014-08-17 Thread David Zuelke
a request handler uses at most once, I'm not sure such a change is worth it. David On 17 Aug 2014, at 04:18, Thomas Bley wrote: > Since we get JSON data, I would also consider $_JSON. > > Regards > Thomas > > > Park Framework wrote on 17.08.2014 01:47: > >

Re: [PHP-DEV] Native support - PUT request, multipart form data

2014-08-18 Thread David Zuelke
On 17 Aug 2014, at 22:55, Chris Wright wrote: > On 17 August 2014 11:49, David Zuelke wrote: >> That does not make any sense; applications could accept XML, CSV or whatever >> else just as well. >> >> The original proposal is not very useful. $_GET contains p

Re: [PHP-DEV] 5.4 security only

2014-08-19 Thread David Zuelke
I'd like to see https://github.com/php/php-src/pull/694 / https://github.com/php/php-src/pull/765 in so FPM in 5.4 will work properly with Apache 2.4.10+'s mod_proxy_fcgi. David On 19 Aug 2014, at 01:59, Stas Malyshev wrote: > Hi! > > Moving this out of other topics into

Re: [PHP-DEV] PHP 5.4.33 RC1 => mod_proxy_fcgi still broken

2014-09-05 Thread David Zuelke
e SetHandler approach instead. If your version of Apache 2.4 doesn't have that yet, use https://gist.github.com/progandy/6ed4eeea60f6277c3e39 David P.S.: if you also want to check if the .php file exists: # make sure the file exists so that if not, Apache will show its 404 page and not FPM

Re: [PHP-DEV] PHP 5.4.33 RC1 => mod_proxy_fcgi still broken

2014-09-10 Thread David Zuelke
The fix is not broken. He's describing a different/additional issue. Things have always been shaky with ProxyPass (that's https://bugs.php.net/bug.php?id=65641) because it's a bag of hurt. That's the whole reason Apache now has SetHandler for proxies! On 08.09.2014, at 22:54, Stas Malyshev wr

Re: [PHP-DEV] PHP 5.4.33 RC1 => mod_proxy_fcgi still broken

2014-09-10 Thread David Zuelke
On 05.09.2014, at 10:54, Remi Collet wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Le 05/09/2014 15:52, David Zuelke a écrit : > >> People should simply use the SetHandler approach instead. > > I agree, see https://bugzilla.redhat.com/1136290 >

Re: [PHP-DEV] PHPDBG nonsense (Was: Re: [PHP-CVS] com php-src: Made phpdbg compatible with new engine: ...)

2014-10-29 Thread David Muir
On 29/10/2014, at 12:43 AM, Julien Pauli wrote: > On Mon, Oct 27, 2014 at 6:27 PM, David Soria Parra wrote: >> On 2014-10-26, Bob Weinand wrote: >>>> Am 26.10.2014 um 17:23 schrieb Lester Caine : >>>> >>>> On 26/10/14 15:41, Bob Weinand wrote: >

Re: [PHP-DEV] PHP-FPM state

2014-11-20 Thread David Zuelke
itted regardless of log_level). So in the interest of behavioral consistency between the two versions, I'd say merge at least the zlog_set_level() move, but the pm.start_servers change is not comparable to the IPv6 breakage because it doesn't change any logic, and we now have tests in 5.6

Re: [PHP-DEV] [VOTE][RFC] Safe Casting Functions

2014-11-20 Thread David Muir
Not a voter, but I don't really see the usefulness of this in core either. Sent from my iPhone > On 21 Nov 2014, at 11:45 am, Adam Harvey wrote: > > My -1 is pretty much the same as Levi's: > >> On 19 November 2014 13:57, Levi Morrison wrote: >> - The RFC does not address how this is differ

Re: [PHP-DEV] Proposal for PHP 7 : case-sensitive symbols

2014-12-21 Thread David Muir
es the same code will run fine, and other times it breaks depending on what lines triggered the auto loader. If you instantiate a Foo instance first, then instantiate a new foo, the code runs fine, but if you try to instantiate a new foo first, we get a fatal error. Cheers, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 5.3 windows binaries

2015-01-03 Thread David Muir
Shouldn't this be directed to the webmaster mailing list? php-webmas...@lists.php.net Sent from my iPhone > On 4 Jan 2015, at 4:45 am, Thomas Hruska wrote: > >> On 12/28/2014 4:47 PM, Thomas Hruska wrote: >>> On 12/7/2014 10:52 PM, Thomas Hruska wrote: On 11/29/2014 6:27 AM, Thomas Hruska

Re: [PHP-DEV] PHP 5.3 windows binaries

2015-01-03 Thread David Muir
> On 4 Jan 2015, at 12:34 pm, Thomas Hruska wrote: > >> On 1/3/2015 4:56 PM, David Muir wrote: >> Shouldn't this be directed to the webmaster mailing list? >> php-webmas...@lists.php.net > > See below. They said that they don't have access to that ser

Re: [PHP-DEV] Faster zend sorting implementation

2015-01-05 Thread David Zuelke
s "kind of a" stable sorting algo, so is it stable only sometimes, or did you mean to say "a kind of"? David > On 05.01.2015, at 18:08, Xinchen Hui wrote: > > Hey: > > I was working on zend_qsort improvement. but I got a problem need > to be disscuss

Re: [PHP-DEV] Faster zend sorting implementation

2015-01-06 Thread David Zuelke
On 06.01.2015, at 05:42, Pierre Joye wrote: > I am not sure about that. Introducing a not easy to catch BC break for > 0.1% gain on function (or even for the whole app) is not very > appealing. > > However, there is nothing in the documentation actually describing how > it works and there are cl

Re: [PHP-DEV] Re: [PHP-CVS] com php-src: Revert "Disable PEAR by default": configure.in

2015-01-30 Thread David Muir
into a separate package. If I already have to install a package installer (php-pear) to install extensions using pecl, then I see no reason why we can't say "install this other installer instead". If PEAR works with php7, then great, you can use that as your installer. If not, use pickle, your distro's package manager, or download a precompiled binary. Cheers, David -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [VOTE] Add is_cacheable() stream-wrapper operation

2015-02-02 Thread David Muir
> On 3 Feb 2015, at 3:49 am, Rasmus Lerdorf wrote: > >> On 02/02/2015 08:38 AM, François Laupretre wrote: >> Hi, >> >> Opening the vote for : >> >> https://wiki.php.net/rfc/streams-is-cacheable >> >> This RFC proposes a generic way for opcode caches to decide if a given URI >> is cacheable o

Re: [PHP-DEV] Download PHP binaries

2012-09-15 Thread David Muir
4.7;) >> (I have backports for f17) > 18 is downloading at the moment, but I could not find on the Fedora site any > reference to which versions of PHP and Apache were included ... > It's the same with most distributions :) > I'm not sure if Fedora even has a current Fir

<    1   2   3   4   5   6   7   8   9   10   >