Search Discussions
-
177
Type hinting
All, As I mentioned numerous times scalar type hinting is a very controversial feature in my mind and requires some substantial discussion before we move ahead to implement it. As such, I think we ...Zeev Suraski
May 22, 2010 at 3:04 pm
Jun 18, 2010 at 4:18 pm -
Hi. I developed some patches for PDO/Postgresql driver in order to add some useful methods that were available in the original pgsql driver. The attached patches apply on 5.3.2 and svn 5.3.x. If ...
Denis Gasparin
May 24, 2010 at 8:57 am
May 10, 2011 at 7:32 pm -
Hello ! Is there any feature request about constant and expression ? I would like to write something like that : <?php namespace foo\bar\directories { const tmp = __DIR__ . '/tmp'; } ? Best regards, ...
Frederic Hardy
May 19, 2010 at 8:54 am
Jun 9, 2010 at 9:36 am -
And I would go with JsonSerializable. However, where does it come from? Does it have to be an interface or why not using __toJson? I must have lived under a rock as I don't see any proposal either, ...
Pierre Joye
May 6, 2010 at 11:37 am
May 15, 2010 at 2:47 pm -
10
ChangeLog
Hey, I know type hints are more fun to discuss but anyways: In trunk ChangeLog lists entries up till 2005 (when 5.2 was branched of, from which 5.3 was branched from which the current trunk was ...Johannes Schlüter
May 28, 2010 at 1:22 pm
May 31, 2010 at 11:32 am -
Hey all, Attached is a patch to remove the warning from parse_url() in situations where parse_url() cannot actually parse the url. The bug report also claims there should be a new feature for ...
Ralph Schindler
May 21, 2010 at 3:38 pm
May 24, 2010 at 7:12 pm -
I was just looking through the implementation of openssl_encrypt() (and openssl_decrypt()) today because I need to make some encrypted payloads, but the prototype didn't have anywhere to place an ...
Sara Golemon
May 18, 2010 at 1:53 am
May 18, 2010 at 9:44 pm -
Hi, The statement 'return' in a closure is now returning from the scope that evaluate the closure (evaluation scope). It could have been in an other way. It could mean return from the scope were the ...
Mathieu.suen
May 3, 2010 at 1:01 pm
May 17, 2010 at 9:48 am -
Hey, Just to let you know about a new RFC for adding autoboxing feature in PHP. Look at http://wiki.php.net/rfc/autoboxing . Regards, Moriyoshi
Moriyoshi Koizumi
May 4, 2010 at 3:54 am
May 6, 2010 at 8:12 am -
Hi, I'm proposing another optimisation technique implementation for PHP which makes up to 20% speed up on synthetic tests and up to 8% speed up on real-life applications. The technique is similar to ...
Dmitry Stogov
May 18, 2010 at 7:22 am
May 25, 2010 at 6:19 am -
Hello ! I'm currently trying to compile the trunk with dtrace under FreeBSD 8 with revision 298979 and i have the following problem : # ./buildconf # ./configure --enable-dtrace #make ... ...
Frederic Hardy
May 6, 2010 at 9:38 am
Jun 23, 2010 at 9:13 pm -
What is the correct todo list ? I want to help us but a need to see the todo list to select my work! Any sugestion to start? -- Att. Mathias Grimm http://mathiasgrimm.com.br http://phpempregos.com.br
Mathias Grimm
May 12, 2010 at 8:23 pm
May 13, 2010 at 6:03 pm -
The documentation team is about to document a few trunk features, but we're unsure about scalar type hinting. I see no final proposal (only three old RFC's) nor recent discussion here. Is the recent ...
Philip Olson
May 22, 2010 at 2:51 pm
May 23, 2010 at 8:28 am -
Hi, In the SPL there is some interface that have abstract method: *Countable* { /* Methods */ abstract public int count <http://www.php.net/manual/en/countable.count.php ( void ) } While some ...
Mathieu.suen
May 18, 2010 at 3:12 pm
May 19, 2010 at 12:59 pm -
im using php 5.1.6 on xampp and i find a bug. how to know if the bug was fixed? the bug is: 1. <?php session_start(); $_SESSION[0] = 'test'; echo $_SESSION[0]; 2. <?php session_start(); ...
Mathias Grimm
May 13, 2010 at 3:25 pm
May 13, 2010 at 7:09 pm -
I would like to contribute to the PDO abstraction layer.
Stanley Sufficool
May 14, 2010 at 2:34 am
May 19, 2010 at 9:49 pm -
i suggest the passthru functionality to pass parameter to other method without typing all parameters,like call_user_func_array. foo(passthru()); = call_user_func_array('foo', func_get_args()); // ...
Mathias Grimm
May 18, 2010 at 10:40 pm
May 19, 2010 at 11:57 am -
If php have annotations feature its be very simple. class MyClass implements Jsonable { private $name; private $age; Transient private $dtCreated;// or JsonIgnore or JsonTransient } all properties ...
Mathias Grimm
May 18, 2010 at 9:04 pm
May 19, 2010 at 12:44 am -
Is the http://wiki.php.net/rfc for both php5 and php6? there are differents developer teams for dev 5 and 6 ? When something new comes to php 5, php 6 must implement it to? -- Mathias Grimm Sun ...
Mathias Grimm
May 18, 2010 at 3:33 pm
May 18, 2010 at 7:14 pm -
Hi. I'm in the process of getting the PHPDoc classes showing the correct inherited properties and methods (public/protected but not private). I picked RecursiveRegexIterator (it has the largest ...
Richard Quadling
May 5, 2010 at 4:26 pm
May 11, 2010 at 12:40 pm -
Hello devs, I've updated the patch that backports the Mike's work, which was previously created and applied by Jani on branches/PHP_5_3 (and reverted...) based on the old trunk, to be applied against ...
Felipe Pena
May 28, 2010 at 1:06 am
May 31, 2010 at 7:56 am -
I know this issue has been seen before, but I hope to do something about it. $json = '1234567890123456789'; $x = json_decode($json); /* $x is now a float *aproximately* * equal to the original value ...
Sara Golemon
May 20, 2010 at 7:50 pm
May 20, 2010 at 9:22 pm -
Hi All, Wondering if there is any support for SPKAC [1] in the openssl extension for PHP? If not is it planned, and if not can it be? KEYGEN/SPKAC support is growing in the UA vendors and KEYGEN is ...
Nathan Rixham
May 18, 2010 at 9:06 am
May 19, 2010 at 12:22 am -
3
Sugest
I want to suggest the GO include format <?php require ( 'utila.php', 'utilb.php', 'utilc.php', ) the same from include or more , without comma <?php require ( 'utila.php' 'utilb.php' 'utilc.php' ) or ...Mathias Grimm
May 13, 2010 at 11:38 pm
May 14, 2010 at 3:22 pm -
Hi, upload progress in session is implemented in old trunk. Is there a change to apply the patch also to the new trunk? http://wiki.php.net/rfc/session_upload_progress Jaroslav Hanslik
Jaroslav Hanslik
May 4, 2010 at 10:47 am
May 10, 2010 at 12:22 pm -
The existing SVN account holder "kristina" suggested that I get an account specifically to help maintain /phpdoc/en/trunk/reference/mongo/
Fitz Agard
May 27, 2010 at 7:13 pm
May 28, 2010 at 12:49 am -
Hi, I prepared a patch [1] which enables serialize() to keep track of object/variable references through its var_hash throughout recursive calls to serialize(). See the test included in the patch ...
Michael Wallner
May 21, 2010 at 8:46 am
May 25, 2010 at 12:14 pm -
2
Æ
Hello ! I have a problem with php 5.3.2 under FreeBSD 7/8 with configure option --enable-zend-multibyte and phar support. Then i use this option, phar does not work correctly. No seg fault, no crash, ...Frederic Hardy
May 20, 2010 at 9:28 am
May 21, 2010 at 5:59 pm -
Hi Felipe: Hope you don't mind that I post it on the list, think the discussion should be properly archived. Hm, well, don't know, but I do not really see a reason to disallow magic methods. There ...
Stefan Marr
May 6, 2010 at 8:16 pm
May 7, 2010 at 2:16 pm -
Manage this group instead of Patrick Reilly. http://news.php.net/group.php?group=php.evangelism
Robert Chu
May 6, 2010 at 8:44 pm
May 6, 2010 at 9:01 pm -
In PHP 5.2, phpinfo() reports the PDO-SQLite version as "3.3.7". However, from the SVN history of the 5.2 branch, SQLite 3.3.15 and even part of 3.3.16 were merged in. The VERSION file was updated to ...
Ken Dreyer
May 6, 2010 at 6:00 pm
May 6, 2010 at 8:13 pm -
I am not sure if this has been discussed or not. I will gladly make an RFC if not. I think it would be very intuitive if htmlspecialchars used the ini value default_charset as its default. And any ...
Brian Moon
May 2, 2010 at 10:53 pm
May 4, 2010 at 4:07 am -
Hi guys, On the nginx mailing list, there is an interesting conversation about the usage of php through fastcgi with nginx which can cause a security hole: http://forum.nginx.org/read.php?2,88845 I ...
Jérôme Loyet
May 21, 2010 at 7:58 pm
Jul 30, 2010 at 8:08 am -
Hi! The patch below seems to fix ext/intl (and maybe others) compile problems on Mac OS X. The problem seems to be because C++ needs libstdc++ and for some reason it doesn't get added on Mac. Could ...
Stas Malyshev
May 24, 2010 at 7:43 pm
May 25, 2010 at 1:04 am -
I am taking over an extension from one of my coworkers, and it was written before the time of PHP 5.3. Are there any special considerations to think about when using closures with call_user_function? ...
Alec
May 19, 2010 at 10:00 pm
May 19, 2010 at 11:25 pm -
http://news.php.net/php.doc.cvs/6187 Regards, Mike
Michael Wallner
May 18, 2010 at 8:24 am
May 18, 2010 at 8:59 am -
1
Suggest
2010/5/14 Johannes Schlüter <johannes@schlueters.de make php more productive is always good. there are others cases where error is imprecise 1. if($a==$b){ 2. 3. if($c==$d){...} the error will be ...Mathias Grimm
May 14, 2010 at 2:14 pm
May 14, 2010 at 2:32 pm -
Hello ! I would like to know if the name of the two release manager are now known ? Best regards, Fred
Frederic Hardy
May 10, 2010 at 9:52 am
May 10, 2010 at 11:06 am -
I do not see a need for Trait-specific reflection because of the flattening property ("compiler-assisted copy&paste").
Sebastian Bergmann
May 7, 2010 at 8:35 am
May 7, 2010 at 12:12 pm -
Hi. This is one of those "out there" ideas. Not sure about the feasibility of it. So ... Currently, there are not a massive number of functions that can detail what has been supplied to a function. ...
Richard Quadling
May 30, 2010 at 6:37 pm
May 30, 2010 at 6:37 pm -
Hi, I recently decided to setup my mac for some php developments. OS X 10.5 already ships with Apache, PHP and I chose PostGreSQL as DB server. I picked a package link from the official website and I ...
Prometheus
May 25, 2010 at 6:16 pm
May 25, 2010 at 6:16 pm -
Hi! The bug 51866 was reclassified as docs bug, but I still think it makes a lot of sense to allow for lenient date parsing. And it's quite easy to do IMHO - the parser can easily stop at the end of ...
Stas Malyshev
May 23, 2010 at 8:52 am
May 23, 2010 at 8:52 am -
could you discuss that on internals please? -- Pierre @pierrejoye | http://blog.thepimp.net | http://www.libgd.org
Pierre Joye
May 22, 2010 at 3:22 pm
May 22, 2010 at 3:22 pm -
Dear Concert Industry Professional: We are writing to ensure Billboard and CelebrityAccess are publishing your Box Office Scores! If you are not currently reporting scores to us, than they are not ...
CelebrityAccess
May 11, 2010 at 8:27 pm
May 11, 2010 at 8:27 pm -
I work on langauge theory.and trying now to develop a new runtime system for xml with php xml handler
Vivek srivastava
May 10, 2010 at 7:10 pm
May 10, 2010 at 7:10 pm -
Hello php experts, We are doing php upgrade from 5.2.3 to 5.3.2 (unix on Octeon/MIPS) and getting a compilation error * Issue with Octeon platform o Round() API throws "Maximum execution time ...
Bharat Nagwani
May 7, 2010 at 5:53 am
May 7, 2010 at 5:53 am -
There are *some* of us :P
Mark Skilbeck
May 5, 2010 at 11:34 am
May 5, 2010 at 11:34 am
Group Overview
group | php-internals |
categories | php |
discussions | 47 |
posts | 416 |
users | 107 |
website | php.net |
107 users for May 2010
Archives
- June 2016 (1)
- May 2016 (648)
- April 2016 (33)
- March 2016 (575)
- February 2016 (423)
- January 2016 (40)
- December 2015 (266)
- November 2015 (481)
- October 2015 (23)
- April 2015 (156)
- March 2015 (988)
- February 2015 (836)
- January 2015 (1,468)
- December 2014 (710)
- November 2014 (703)
- October 2014 (787)
- September 2014 (730)
- August 2014 (700)
- July 2014 (1,142)
- June 2014 (488)
- May 2014 (816)
- April 2014 (355)
- March 2014 (611)
- February 2014 (971)
- January 2014 (963)
- December 2013 (489)
- November 2013 (468)
- October 2013 (562)
- September 2013 (622)
- August 2013 (451)
- July 2013 (330)
- June 2013 (422)
- May 2013 (364)
- April 2013 (359)
- March 2013 (497)
- February 2013 (537)
- January 2013 (547)
- December 2012 (335)
- November 2012 (148)
- October 2012 (480)
- September 2012 (632)
- August 2012 (661)
- July 2012 (841)
- June 2012 (362)
- May 2012 (317)
- April 2012 (1,101)
- March 2012 (908)
- February 2012 (780)
- January 2012 (428)
- December 2011 (466)
- November 2011 (690)
- October 2011 (331)
- September 2011 (628)
- August 2011 (777)
- July 2011 (558)
- June 2011 (1,099)
- May 2011 (488)
- April 2011 (345)
- March 2011 (236)
- February 2011 (137)
- January 2011 (230)
- December 2010 (434)
- November 2010 (701)
- October 2010 (211)
- September 2010 (277)
- August 2010 (362)
- July 2010 (205)
- June 2010 (399)
- May 2010 (416)
- April 2010 (473)
- March 2010 (635)
- February 2010 (148)
- January 2010 (325)
- December 2009 (335)
- November 2009 (334)
- October 2009 (270)
- September 2009 (205)
- August 2009 (276)
- July 2009 (605)
- June 2009 (460)
- May 2009 (285)
- April 2009 (254)
- March 2009 (351)
- February 2009 (335)
- January 2009 (451)
- December 2008 (347)
- November 2008 (475)
- October 2008 (795)
- September 2008 (620)
- August 2008 (673)
- July 2008 (829)
- June 2008 (654)
- May 2008 (642)
- April 2008 (653)
- March 2008 (872)
- February 2008 (804)
- January 2008 (751)
- December 2007 (752)
- November 2007 (563)
- October 2007 (490)
- September 2007 (499)
- August 2007 (660)
- July 2007 (965)
- June 2007 (359)
- May 2007 (904)
- April 2007 (476)
- March 2007 (451)
- February 2007 (465)
- January 2007 (499)
- December 2006 (480)
- November 2006 (454)
- October 2006 (391)
- September 2006 (437)
- August 2006 (389)
- July 2006 (840)
- June 2006 (397)
- May 2006 (778)
- April 2006 (426)
- March 2006 (591)
- February 2006 (291)
- January 2006 (391)
- December 2005 (434)
- November 2005 (1,060)
- October 2005 (554)
- September 2005 (677)
- August 2005 (1,157)
- July 2005 (419)
- June 2005 (704)
- May 2005 (195)
- April 2005 (446)
- March 2005 (474)
- February 2005 (770)
- January 2005 (210)
- December 2004 (295)
- November 2004 (308)
- October 2004 (558)
- September 2004 (580)
- August 2004 (734)
- July 2004 (927)
- June 2004 (653)
- May 2004 (575)
- April 2004 (774)
- March 2004 (585)
- February 2004 (819)
- January 2004 (700)
- December 2003 (903)
- November 2003 (682)
- October 2003 (530)
- September 2003 (297)
- August 2003 (659)
- July 2003 (604)
- June 2003 (952)
- May 2003 (994)
- April 2003 (557)
- March 2003 (556)