Search Discussions
-
Hi all, I've written an RFC for PHP over at: https://wiki.php.net/rfc/escaper. The RFC is a proposal to implement a standardised means of escaping data which is being output into XML/HTML. Cross-Site ...
Pádraic Brady
Sep 18, 2012 at 11:30 am
Sep 21, 2012 at 9:46 am -
I would like to officially introduce an RFC with a patch to implement __toString to DateTime. This is a commonly requested feature that goes unanswered mostly because of the inability to agree on a ...
Will Fitch
Sep 1, 2012 at 10:15 am
Sep 5, 2012 at 3:27 pm -
Hey folks! Some people asked me what the advantages of using an AST-based parsing/compilation process are, so I put together a few quick notes in an RFC ...
Nikita Popov
Sep 4, 2012 at 7:57 pm
Sep 6, 2012 at 6:42 pm -
Hi internals! The ::class resolution proposal had significant discussion in April and I've updated the patch to address issues that came up then. At this point, I've gotten some positive feedback ...
Ralph Schindler
Sep 11, 2012 at 2:39 pm
Sep 14, 2012 at 3:14 pm -
Hi, I was just using the PHP namespaces for the first time and noticed a difference that i really didn't expect. (No, i won't start complaining about the slash based namespace). In C++ when you ...
Mark
Sep 6, 2012 at 9:30 pm
Sep 7, 2012 at 9:52 pm -
Hi internals, it's been a great eight months now for PHP 5.4. We released 5.4.0 final in february and since then we were able to deliver a new PHP version every month (thanks to the hard work from ...
David Soria Parra
Sep 8, 2012 at 11:49 am
Sep 17, 2012 at 10:47 pm -
Hello, https://wiki.php.net/rfc/alternative_callback_syntax is a proposal for a simple alternative syntax for creating function callbacks. The basics: Given a function/method call, replace the ...
Steve Clay
Sep 19, 2012 at 2:48 am
Sep 20, 2012 at 11:18 am -
Based on our recent discussion on #pecl , I'd like we clarify what we think is a "BCB" (Backward Compatibility Break) as well as what "only minor BC breaks" could mean. Stas' recent topic on ...
Jpauli
Sep 10, 2012 at 4:29 pm
Sep 11, 2012 at 8:59 am -
Hello, If PHP receives a HTTP request with the method POST and with the header Content-Type: application/x-www-form-encoded, then, it automatically parses the request body to populate an array in ...
Ivan Enderlin @ Hoa
Sep 21, 2012 at 11:05 am
Sep 25, 2012 at 8:02 am -
Hello all, I'm opening the vote for the simplified password hashing API indicated here: https://wiki.php.net/rfc/password_hash Please vote, Thanks, Anthony
Anthony Ferrara
Sep 4, 2012 at 2:16 pm
Sep 12, 2012 at 8:56 pm -
The idea was originally proposed by Marc Easen who created a patch and asked for help with putting together an RFC. I have yet to see a formal proposal but on the list Easen modified his idea so that ...
Slevy1
Sep 2, 2012 at 12:43 am
Sep 4, 2012 at 4:12 pm -
I opened this bug report 2 years ago: https://bugs.php.net/bug.php?id=52756 Is GD still actively maintained? If it isn't, then perhaps it's time to start thinking about switching to a graphics ...
Rasmus Schultz
Sep 6, 2012 at 12:07 pm
Jan 18, 2013 at 9:47 pm -
Hello, I would like to start with an example: <?php class A { public static function foo ( ) { return 'foo'; } } class B { protected $a = null; public function __construct ( ) { $this- a = new A(); } ...
Ivan Enderlin @ Hoa
Sep 3, 2012 at 2:51 pm
Sep 5, 2012 at 8:14 am -
Hi. My apologies if I missed an "obvious clue" somewhere, but I am looking for a configure option to enable nearly everything - to be supplemented by select disable statements. In the past I have had ...
Michael Felt
Sep 16, 2012 at 7:50 pm
Sep 18, 2012 at 8:36 pm -
Hey, I'm going to make this brief, because I suspect a lot of people are going to jump at the opportunity to cry bloody murder when I suggest this. I wonder if it would make sense to have a way to ...
Rasmus Schultz
Sep 18, 2012 at 12:19 pm
Sep 19, 2012 at 6:37 pm -
Hi, I recently noticed that on http://www.php.net/downloads.php, "Redhat/CentOS Binaries" link to a third party repository [1]. First, this could be confused for users, as this is not a Red Hat or ...
Remi Collet
Sep 15, 2012 at 7:47 am
Sep 16, 2012 at 8:32 pm -
Hi, Just looking at the foreach list behaviour and it does this... $i = [1, 2, 3]; foreach($i as list($a, $b)) var_dump($a, $b); Outputs.... NULL NULL NULL NULL NULL NULL There is no test I can see ...
Jared Williams
Sep 2, 2012 at 11:07 pm
Sep 3, 2012 at 5:51 pm -
Hi all, There's been a lot of discussion around whether or not to include exceptions for core (no class implementations) errors or not. There's been a lot said on both sides. However, I'd like to ...
Anthony Ferrara
Sep 2, 2012 at 1:39 am
Sep 4, 2012 at 3:30 pm -
I am beginning to see this as another 'date/time' type of problem. Adopt the standard that everything internally is UTC and many of the problems go away. I can remember discussions on unicode and ...
Lester Caine
Sep 20, 2012 at 10:10 am
Sep 20, 2012 at 2:05 pm -
Hello, I was wondering how difficult it would be to add access to a standard authenticated encryption mode in openssl. I was looking and trying to figure out how to do this in PHP, seems you have to ...
Chad Emrys
Sep 20, 2012 at 2:48 pm
Aug 28, 2013 at 8:42 pm -
hello guys, this is my first time, if thing mail is at wrong place please forward it the right place. while coding , i just found a requirement, its little bit funny. if it already exists, please be ...
Kuldeep dhaka
Sep 30, 2012 at 11:50 am
Sep 30, 2012 at 4:53 pm -
Hi, I'm curious whether the ORDER of the class properties returned by get_class_vars(), is in some way guaranteed. I do not find mention of it in the documentation. I'm especially interested in the ...
Patrick Schaaf
Sep 9, 2012 at 7:51 am
Sep 9, 2012 at 7:32 pm -
Hi! Given many discussions on the list about changing stuff in PHP, I'd like to bring everybody's attention to comment by Linus Torvalds in this topic ...
Stas Malyshev
Sep 4, 2012 at 7:15 am
Sep 6, 2012 at 8:07 pm -
Hi all, I originally posted the bug at <https://bugs.php.net/bug.php?id=46408 and sent the pull request. (Thanks for your help so far, Lars.) I'm not very aware of the implications of a broader fix ...
Alec Smecher
Sep 20, 2012 at 7:05 pm
Oct 29, 2012 at 11:33 pm -
Hi, all - There's a bug in the current version of 5.3 and 5.4 with pdo_pgsql and boolean PDO types. Here's a summary of the issue: The following cases cause pgsql boolean types to be converted to an ...
Will Fitch
Sep 17, 2012 at 5:45 pm
Oct 17, 2012 at 7:32 pm -
Hey guys, I got this request from my IDL contact a few hours ago. What do y'all think? Looks like a good idea to me at least. --Kris ---------- Forwarded message ---------- From: Douglas Schatz ...
Kris Craig
Sep 20, 2012 at 10:20 am
Sep 20, 2012 at 10:53 am -
Hi everybody, I'm currently working on https://github.com/php/php-src/pull/186, which fixes a problem with PostgreSQL when passing a float to pg_query_params() with a locale setting that uses "," as ...
Lars Strojny
Sep 19, 2012 at 6:36 pm
Sep 20, 2012 at 8:02 am -
Hello, It is probably me but it seems like the build-in HTTP server does not well support the HEAD method. Here is my following test case. First, the foo.php file: <?php ...
Ivan Enderlin @ Hoa
Sep 12, 2012 at 8:55 am
Sep 12, 2012 at 11:45 am -
Hi! I am noticing that the new way we're doing releases in 5.4 is not completely clear to everybody, so I would like to reiterate some points. 1. 5.4 releases are done from release branch (PHP-5.4.X, ...
Stas Malyshev
Sep 2, 2012 at 2:11 am
Sep 4, 2012 at 6:05 am -
Hi all, I have a question about the internal implementation of PHP's hashtables. I did some researches, but I didn't find the answer. Here is an example of what I would like to understand. Start by ...
Amaury Bouchard
Sep 2, 2012 at 5:16 pm
Sep 2, 2012 at 10:10 pm -
Hi, I was asked in a private email that it is true or not that *anybody* can create an RFC. As this isn't the first time to see that question I think that we could document that a little bit ...
Ferenc Kovacs
Sep 14, 2012 at 9:36 am
Jan 29, 2013 at 2:10 pm -
At the start of 'make test' I get a strange bin/sh error that I think keeps the result from being saved in a file. I answer 's' for save at the end, but no file is saved (that I can find). I editted ...
Michael Felt
Sep 28, 2012 at 8:01 pm
Oct 5, 2012 at 11:48 am -
Hi! Does anybody know who is responsible the snaps.php.net machine? It seems to be serving 5.4 builds under then name of php-trunk and that confuses people. Not only we don't have "trunk" as such ...
Stas Malyshev
Sep 13, 2012 at 7:21 pm
Sep 14, 2012 at 9:38 am -
Hi everybody, with the release of PHP 5.4 a similar pattern happened as with the release of 5.3: while we want people to upgrade as fast as possible, it is often a bumpy road for users to migrate to ...
Lars Strojny
Sep 8, 2012 at 4:57 pm
Sep 8, 2012 at 7:39 pm -
With Due Respect. Attention I sourced your email from a human resource profile database in the chamber, my name is DR JOHN WILLIAM. Account officer to late Mr. Morris Thompson from America who is an ...
John William
Sep 22, 2012 at 12:19 pm
Sep 23, 2012 at 4:00 pm -
Hi, What do you think about adding PHPass compatibility to the password hashing API ? We could add two new algos : PASSWORD_MD5 and PASSWORD_EXT_DES. That way, existing password crypted using phpass ...
Nicolas Grekas
Sep 13, 2012 at 11:33 am
Sep 13, 2012 at 12:04 pm -
When using make INSTALL_ROOT=/var/tmp/root/php-5.3.17.0 install I get an error about httpd.conf not being in place for apxs (if I copy it ahead of time, apxs works fine) Isnt this to be expected - ...
Michael Felt
Sep 29, 2012 at 6:03 pm
Dec 27, 2012 at 5:01 pm -
Hey all, An odd problem has cropped up that I think can be solved at the PHP level. Basically, on Ubuntu (and other distributions), using ssl stream context with verify_peer = true could potentially ...
Ralph Schindler
Sep 25, 2012 at 4:56 pm
Sep 26, 2012 at 5:51 am -
Morning! I was creating a patch to allow serialize/unserialize of the DateTimeZone object. When running `make test` I found that we already have a test for the serialize/unserialize of DateTimeZone ...
Lonny Kapelushnik
Sep 25, 2012 at 12:02 pm
Sep 25, 2012 at 8:07 pm -
I haven't seen a maintenance notification, and it appears git.php.net may be down. Anyone else able to reproduce this?
Will Fitch
Sep 17, 2012 at 3:47 pm
Sep 17, 2012 at 3:49 pm -
Hello, I have written an extension using C language, I wrote an email to <span class="m_body_email_addr" title="f9b4d913df3bee51be00b87b650497d7" pecl-dev@lists.php.net</span according to "Publishing ...
Event2game
Sep 12, 2012 at 7:34 am
Sep 12, 2012 at 8:26 am -
I have created a single build combining the property get/set RFC and Generator RFC. On Windows, there are some regressions due to the branch not included many of the recent fixes for Windows ...
Matt Ficken
Sep 4, 2012 at 1:28 am
Sep 4, 2012 at 3:09 am -
CC'ing the internals list as I it has more subscribers from the developers. -- Ferenc Kovács @Tyr43l - http://tyrael.hu
Ferenc Kovacs
Sep 29, 2012 at 10:57 am
Sep 29, 2012 at 10:57 am -
Hello, I reported this issue as bug #63180, but I am also posting it here. We are going to use the attached patch on our production servers, so I would like to know if any of the developers sees any ...
Vesselin Atanasov
Sep 28, 2012 at 4:31 pm
Sep 28, 2012 at 4:31 pm -
Hi, For now php-fpm provides and init.d sample script. I propose to also provide an unit sample file. During updating systemd management in fedora, I notice it is quite ugly to rely on configuration ...
Remi Collet
Sep 19, 2012 at 3:14 pm
Sep 19, 2012 at 3:14 pm -
Is it safe to write PHP extensions in C++? I read on Sara Golemon's book that the zend engine can bailout on a request during a call to php_error_docref() or even an emaloc() that exceeds the allowed ...
X x
Sep 14, 2012 at 11:40 am
Sep 14, 2012 at 11:40 am -
The PHP development team announces the immediate availability of PHP 5.4.7 and PHP 5.3.17. These releases fix over 20 bugs. All users of PHP are encouraged to upgrade to PHP 5.4.6, or at least ...
Johannes Schlüter
Sep 13, 2012 at 10:05 pm
Sep 13, 2012 at 10:05 pm -
hi, I wonder why you are not doing at least one RC for 5.3.17. We have messed enough releases in the past by not doing any QA before releasing final releases. Do you mind to explain me why you go for ...
Pierre Joye
Sep 13, 2012 at 1:27 pm
Sep 13, 2012 at 1:27 pm -
Interesting technique: http://ayende.com/blog/158721/rule-out-the-stupid-stuff-first-select-still-ainrsquo-t-broken I wonder if this is applicable to PHP in any way? Would stream buffers benefit from ...
Rasmus Schultz
Sep 10, 2012 at 12:04 pm
Sep 10, 2012 at 12:04 pm -
Would you like to return home from your Etosha safari with amazing photos ? If yes, then this ebook is for you . You may have just one chance to capture the moments that you witness. You can get a ...
Etosha Photography Uncovered
Sep 3, 2012 at 11:35 pm
Sep 3, 2012 at 11:35 pm
Group Overview
group | php-internals |
categories | php |
discussions | 51 |
posts | 632 |
users | 99 |
website | php.net |
99 users for September 2012
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)