Search Discussions
-
How come there is no straight-foward obvious way to simply remove a given value from an array? Just look at the number of horrible ways people solve this obvious problem ...
Rasmus Schultz
Aug 15, 2012 at 8:18 pm
Aug 23, 2012 at 6:23 am -
Hi internals! I think there already was a lot of discussion on the generators, so it's time to move to the next step. I'd like to vote on the feature in two weeks, so this the "announce[ment] on ...
Nikita Popov
Aug 11, 2012 at 1:43 pm
Aug 24, 2012 at 12:08 pm -
Hi: This feature introduces list() support in foreach constructs(more info can be found here: https://wiki.php.net/rfc/foreachlist). this could make the grammar more consistent, see following ...
Laruence
Aug 18, 2012 at 4:34 am
Aug 28, 2012 at 5:16 pm -
Hello Everyone, I've been reading that it's possible to encounter session id collisions with the default php configuration. It's also been said that PHP utilizes a cryptographically weak random ...
Raymond Irving
Aug 23, 2012 at 4:48 am
Aug 5, 2013 at 7:58 pm -
Hi, We started a discussion about the current error handling mechanism and the possible improvements in the "Why do disabled functions / classes generate a WARNING" thread[1], but that is a little ...
Ferenc Kovacs
Aug 3, 2012 at 8:56 pm
Aug 27, 2012 at 12:30 pm -
Hi internals! I think the generators RFC has been discussed thoroughly enough by now, so I opened the vote: https://wiki.php.net/rfc/generators#vote Thanks, Nikita
Nikita Popov
Aug 25, 2012 at 4:10 pm
Sep 4, 2012 at 1:19 am -
I've felt the need for this for some time. Proposed syntax: ------------------------- $x = (InterfaceName) $container- service; Proposed behavior: --------------------------- Checks if the instance ...
Stan Vass
Aug 14, 2012 at 7:46 am
Aug 18, 2012 at 4:29 pm -
Many of my 'problems' with all of the 'progress' being made with PHP are caused because I'm using a core framework who's origins go back to PHP4 days. Many of the facilities are currently unusable ...
Lester Caine
Aug 25, 2012 at 9:15 am
Aug 26, 2012 at 6:14 pm -
Hi, AOP (http://en.wikipedia.org/wiki/Aspect-oriented_programming) when used correctly, can make your application really modular. I've seen several implementations but they all require compiling of ...
Peter Nguyen
Aug 23, 2012 at 2:37 pm
Aug 25, 2012 at 10:31 am -
Hi, Don't know, how complicated this is (and also someone (not me) must implement it, because I can't :X), but to be in sync with the operators the short ternary operator should be usable in ...
Sebastian Krebs
Aug 17, 2012 at 9:42 pm
Aug 26, 2012 at 12:19 am -
Hey all I've posted before about adding the ability to do dynamic decorators before. I think I have come up with a method to do so in core. Basically, the problem is that I can't create a decorator ...
Anthony Ferrara
Aug 12, 2012 at 6:17 pm
Aug 15, 2012 at 10:40 am -
htmlspecialchars(), htmlentities(), html_entity_decode() and get_html_translation_table() all take an encoding parameter that used to default to iso-8859-1. We changed the default in PHP 5.4 to ...
Rasmus Lerdorf
Aug 23, 2012 at 4:07 pm
Aug 30, 2012 at 2:32 am -
Hello, Some of my users & contributors have met an issue with files containing UTF-8 on certain Windows configurations (but they actually did not found the difference). Any idea why? The issue does ...
Ivan Enderlin @ Hoa
Aug 21, 2012 at 1:10 pm
Aug 23, 2012 at 12:05 pm -
This comment from Sebastian got me thinking. It's true. Every-someone has his own views on what is absolutely necessary and should be available to every-one. Depending on ones coding style, it ...
Lars Schultz
Aug 20, 2012 at 8:43 pm
Aug 23, 2012 at 7:14 am -
Having thought about this for a while, I think this is a bad idea - here's why: $array = array(1001, 1002, 1003, 1004); $number = $array[-1]; // = 1004 $number[-1] = 1005; $number = $array[-1]; // = ...
Rasmus Schultz
Aug 31, 2012 at 1:14 pm
Sep 2, 2012 at 1:10 am -
Hello Internals! I'm just on and off luker here but thought I'll throw in an idea for a feature I'd love to see in PHP: aliasing static methods. Syntax would look something like this: use ...
Giedrius Dubinskas
Aug 15, 2012 at 10:59 am
Aug 16, 2012 at 7:26 am -
Hi, As most of you know, the current php interactive shell is pretty much useless without compiling php --with-readline, but for the most users this the first impression what they experience (eg ...
Ferenc Kovacs
Aug 4, 2012 at 7:49 pm
Aug 5, 2012 at 11:39 pm -
Having now got mysql running on the PHP5.4.3 machine, I'm trying to compile mysqlnd and mysqli as extensions to load and unload as required. php_mysqlnd_config.h no longer exists, but why is the ...
Lester Caine
Aug 20, 2012 at 9:52 pm
Aug 21, 2012 at 4:47 pm -
Because there isn't anything actually wrong. A fatal error is reserved for things we cannot recover from, but a disabled function is easily recoverable. -Hannes
Hannes Magnusson
Aug 3, 2012 at 11:33 am
Aug 3, 2012 at 5:01 pm -
Hi, After the last discussion I've started about runkit which some of you suggest to keep it in PECL - I thought about the extensions "problem" in PHP and wish to ask for your opinion. Many ...
Yahav Gindi Bar
Aug 4, 2012 at 7:58 pm
Aug 5, 2012 at 2:16 am -
I have some simple questions about PHP 5.x End Of Life (EOL) dates: PHP 5.0 - Is there some official news-item or changelog entry on php.net that says at which date PHP 5.0 went End Of Life? PHP 5.2 ...
Hakre
Aug 1, 2012 at 1:13 pm
Aug 2, 2012 at 4:30 am -
Hi, I believe its a newbie question, but because I only replied to mails and didn't create any RFC page yet I wish to confirm. I wish to create an RFC page for a feature discussion, but I can't do it ...
Yahav Gindi Bar
Aug 14, 2012 at 5:28 pm
Aug 14, 2012 at 8:39 pm -
Whats the status of 5.3? I have some changes that need to get into a couple of the xml based extensions in order for them to work with the next libxml2 release next month. Should I be putting these ...
Rob Richards
Aug 9, 2012 at 2:51 pm
Aug 9, 2012 at 6:46 pm -
Hello, ext/mbstring is very useful, but from my point of view, some functions are missing. I would like to propose the addition of the following functions. mb_append($str, $piece) and ...
Ivan Enderlin @ Hoa
Aug 6, 2012 at 7:54 pm
Sep 25, 2012 at 8:03 am -
as I see it, the problem with AOP in PHP is the same as with any other technique that requires code-generation, in some form or another, including code-manipulation, pre-processing, transpilers, and ...
Rasmus Schultz
Aug 26, 2012 at 5:52 pm
Aug 27, 2012 at 6:33 am -
Hello, What could have cause PHP to start out so great but then slows to a crawl? Could it be the GC? Number of iterations Node.js PHP --------------------------------------------------------------- ...
Raymond Irving
Aug 19, 2012 at 2:29 pm
Aug 20, 2012 at 1:06 am -
Hi, Please take a look at https://github.com/php/php-src/pull/180 This patch is designed to offer two new interfaces in the SPL to standardize filters and validators of frameworks (ZF, SF, etc ...) ...
Axel Etcheverry
Aug 31, 2012 at 12:55 pm
Sep 1, 2012 at 11:21 am -
I get reports from Doctrine users, that apparently the Reflection API is broken in 5.3.16 and everything else than BC: https://bugs.php.net/bug.php?id=62715 Has been closed, but wrongly. Can this be ...
Benjamin Eberlei
Aug 23, 2012 at 12:47 pm
Aug 24, 2012 at 10:06 am -
Hi everybody, I would like to merge https://github.com/php/php-src/pull/120 in HEAD, 5_4 and 5_3 to fix splitting of soft line breaks. Any concerns? With regards, Lars
Lars Strojny
Aug 20, 2012 at 3:25 pm
Aug 20, 2012 at 9:57 pm -
--- sapi/apache2filter/sapi_apache2.c | 3 +++ sapi/apache2handler/mod_php5.c | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/sapi/apache2filter/sapi_apache2.c ...
Cristian Rodríguez
Aug 6, 2012 at 9:59 pm
Aug 8, 2012 at 7:55 pm -
Is this all the documentation there is for the use-clause for anonymous closures? http://us2.php.net/manual/en/functions.anonymous.php For one, it would be nice to have documentation that explains ...
Rasmus Schultz
Aug 3, 2012 at 3:09 pm
Aug 3, 2012 at 4:05 pm -
Hey guys, I'm not sure whom to ask, but could somebody with the appropriate privs add a "Quick Fix" to the Bugs dropdown that says something along the lines of, "Support for this PHP version has been ...
Kris Craig
Aug 25, 2012 at 7:24 am
Aug 27, 2012 at 1:11 am -
Guys, this is serious. https://github.com/php/php-src/commit/a90170e6f803f283d6c8e4e8d6b7bd8b7bd011a4 Sebastian has seriously violated an important PHP policy: no big changes, particularly ...
Andrew Faulds
Aug 22, 2012 at 3:43 pm
Aug 22, 2012 at 4:01 pm -
Hello, I'm trying to compile php 5.3 as php-fpm using the following configure command ./configure --enable-debug --enable-maintainer-zts --enable-fpm --enable-fastcgi and i get this " Thank you for ...
Adi Mutu
Aug 20, 2012 at 7:47 pm
Aug 20, 2012 at 7:52 pm -
Hi: Yaf (http://pecl.php.net/yaf) is a PHP MVC framework, which is build as a PHP extension. It could be considered as the fastest PHP framework for now(http://www.laruence.com/2011/12/02/2333.html), ...
Laruence
Aug 20, 2012 at 8:06 am
Aug 20, 2012 at 8:15 am -
I am trying to follow all the latest threads on various decorators, casting, contracts, iterators, interfaces and the rest but I have to be honest ... I simply don't understand the majority of what ...
Lester Caine
Aug 15, 2012 at 9:32 am
Aug 15, 2012 at 10:57 am -
Hi: We have discussed this RFC for a while, and seems no new suggestion raise up. previous discussion could be found here: http://marc.info/?l=php-internals&m=134312917227815&w=2 So, Let's voting for ...
Laruence
Aug 6, 2012 at 11:40 am
Aug 13, 2012 at 1:22 pm -
--- sapi/apache2filter/sapi_apache2.c | 11 +++++++++-- sapi/apache2handler/sapi_apache2.c | 12 ++++++++++-- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git ...
Cristian Rodríguez
Aug 8, 2012 at 5:34 pm
Aug 8, 2012 at 6:03 pm -
It seems it has already been taken over: https://github.com/zenovich/runkit -- Etienne Kneuss
Etienne Kneuss
Aug 3, 2012 at 9:56 am
Aug 3, 2012 at 1:32 pm -
developing the php run time
Khan hafizur rahman
Aug 31, 2012 at 8:41 pm
Aug 31, 2012 at 8:41 pm -
For the record there is another userland library targeting Unicode support without external dependencies. https://github.com/nicolas-grekas/Patchwork-UTF8 Currently it is considered to be included in ...
Ferenc Kovacs
Aug 31, 2012 at 12:20 pm
Aug 31, 2012 at 12:20 pm -
Hi! We've released PHP 5.4.7RC1 which can be found here: http://downloads.php.net/stas/ Windows binaries as always are at: http://windows.php.net/qa/ This is a regular bugfix release, the full list ...
David Soria Parra
Aug 31, 2012 at 11:12 am
Aug 31, 2012 at 11:12 am -
+1 on error msg numbering. Such an error ID would contain at least two parts, one identifying the code block the error was generating from ('core' or extension name), and a number unique in this ...
Laupretre François
Aug 28, 2012 at 10:43 am
Aug 28, 2012 at 10:43 am -
Nuked flmommens
PHP Group
Aug 27, 2012 at 12:31 pm
Aug 27, 2012 at 12:31 pm -
most/some of the ideas here were brought up before, there is a proposal and a nice history of mailing list discussions (albeit not up-to-date) at https://wiki.php.net/rfc/ifsetor personally I would ...
Ferenc Kovacs
Aug 24, 2012 at 9:15 pm
Aug 24, 2012 at 9:15 pm -
Assigning bug 62912 to <span class="m_body_email_addr" title="e2e55c88f67f475359af28a89150d69c" [email protected]</span
François Mommens
Aug 23, 2012 at 8:34 pm
Aug 23, 2012 at 8:34 pm -
Hi, this is a documentation bug only which I have discovered when cherry-picking patches in 5.4.5 and 5.4.6. PHP Bug #62227 was never present in PHP 5.4 due changes in the code commited in: commit ...
Ondřej Surý
Aug 23, 2012 at 11:55 am
Aug 23, 2012 at 11:55 am -
0
test
never mind this message. -- Ferenc Kovács @Tyr43l - http://tyrael.huFerenc Kovacs
Aug 23, 2012 at 11:21 am
Aug 23, 2012 at 11:21 am -
Hello there, Recently we have seen many extremely long discussion threads here on internals. While discussion is good, much of these threads are filled with noise, pointless arguing that has little ...
Andrew Faulds
Aug 21, 2012 at 10:17 am
Aug 21, 2012 at 10:17 am -
Hi all, I'm wondering what the status/plan is for supporting PGP for Phar signatures. So far I've only found a couple of vague references such as on the Phar::setSignatureAlgorithm() manual page ...
Evan Coury
Aug 17, 2012 at 7:32 am
Aug 17, 2012 at 7:32 am
Group Overview
group | php-internals |
categories | php |
discussions | 58 |
posts | 661 |
users | 98 |
website | php.net |
98 users for August 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)