Search Discussions
-
WTF is T_PAAMAYIM_NEKUDOTAYIM? This has to be THE most asked question by new php developers when they come across it. Can we please change the token name to T_DOUBLE_COLON so I don't have to hear ...
Admin
Oct 30, 2010 at 12:47 am
Nov 2, 2010 at 10:14 pm -
Okay so I am thinking about submitting a patch to PHP that would enable you to call functions like this: stuff(1, 2, 'separator' = '<br ', 'clean' = true); and define them like this: /** * function ...
G M
Oct 15, 2010 at 5:22 pm
Oct 19, 2010 at 6:54 pm -
Hi! Any reason why DateTime doesn't have a constant for RFC2616 (HTTP) date format? RFC1123 and 'r' are _almost_ there but 2616 explicitly states TZ must be "GMT" and 1123 format produces +0000 ...
Stas Malyshev
Oct 2, 2010 at 1:18 am
Oct 5, 2010 at 7:35 am -
Hello. Take the following simple code. <?php function foo($var1, $var2 = 2, $var3 = 3) { echo "$var1, $var2, $var3\n"; } foo(10); // 10, 2, 3 foo(10, 20); // 10, 20, 3 foo(10, 20, 30); // 10, 20, 30 ...
Richard Quadling
Oct 20, 2010 at 11:59 am
Oct 22, 2010 at 3:32 am -
Greetings, in reference to bug #52713 i'd like to inquire you about this decision which actually broke my codebase in different parts. The situation is this one: class ActiveRecord { public function ...
Giovanni Giacobbi
Oct 24, 2010 at 10:38 pm
Nov 3, 2010 at 10:29 am -
I think it is a bug, but it might also be a misunderstanding. Background: I am trying to convert Joomla 1.0.X to 1.5.X and ran into problems with the conversion of the database that is done during ...
Michael Felt
Oct 9, 2010 at 8:13 pm
Oct 12, 2010 at 9:15 pm -
In comparing the performance of PHP 5.2.5 file_exists calls versus C stat calls, I discovered via Windows sysinternals ProcessMonitor that PHP seems to do a stat on each component of a file path. For ...
Scott Nichol
Oct 7, 2010 at 6:09 pm
Oct 8, 2010 at 11:19 am -
I think this is a great case study that could lead to some improvements in the process of fixing bugs in PHP: http://bugs.php.net/bug.php?id=45743 A potential bug was reported on property_exists() ...
Stan Vass
Oct 12, 2010 at 12:53 pm
Oct 13, 2010 at 10:47 am -
PHP 5.2.14 Docs say to compile w/ zlib you need to use the --with-zlib[=DIR] flag. This does not work. You need to use --with-zlib --with-zlib-dir=[DIR] Is this a documentation error or a ./configure ...
Lonnyk
Oct 21, 2010 at 3:09 pm
Oct 26, 2010 at 7:58 am -
Hi. Is there a way to continue the build process (on Windows) if a shared extension fails to build. Currently, if an extension fails, then it halts the entire build. Which is probably fine in ...
Richard Quadling
Oct 19, 2010 at 12:42 pm
Oct 20, 2010 at 2:00 pm -
Maybe a bug? with ext/* I wonder if it is internal, or something borrowed. The hardpart is to get a compiler old enough to not have stdint.h I suppose, but when that is the case the build fails ...
Michael Felt
Oct 19, 2010 at 1:32 pm
Oct 19, 2010 at 10:33 pm -
Hi folks, is it already possible to build the sapi modules separately ? I'd like to split them off into completely separate packages for easier systems maintenance. cu -- ...
Enrico Weigelt
Oct 15, 2010 at 8:45 am
Oct 15, 2010 at 11:44 am -
Hi, Probly rehashing an old conversation here, but I'm wondering why the following isn't supported <?php abstract class AbstractServer {} class ConcreteServer extends AbstractServer {} abstract class ...
Nathan Nobbe
Oct 7, 2010 at 5:56 am
Oct 8, 2010 at 2:07 am -
Dear list, A few weeks ago I submitted the attached patch to this list. Apart from some initial comments I've not heard if the patch is good enough now to be added to the PHP sources. Is there ...
Jorrit Kronjee
Oct 11, 2010 at 12:43 pm
Nov 3, 2010 at 9:37 pm -
Greetings, I'm currently trying to troubleshoot an intermittent problem on one of our servers. After some time of running just fine (usually a couple of hours), scripts will start throwing the ...
Tim Steiner
Oct 21, 2010 at 11:04 pm
Oct 23, 2010 at 10:31 am -
I'm trying to store zvals in a hash table which is part of a resource. Unfortunately the zvals do not seem to "persist" between function calls: <?php $ctx = foo_create_context(); ...
Martin Jansen
Oct 22, 2010 at 9:22 pm
Oct 23, 2010 at 6:29 am -
Hello internals, I've occurred an inconsistent problem: <?php C::f(); abstract class C { public static function f() { echo 'foo'; } } ? This works and print "foo". <?php C::f(); interface I {} ...
Jingcheng Zhang
Oct 3, 2010 at 5:40 am
Oct 3, 2010 at 6:19 am -
hi, This directive is documented only to be used with FTP. Yes it would be nice to fully support the HTTP RFC, but not by making this implementation more ugly. Also new features should go to trunk. I ...
Pierre Joye
Oct 30, 2010 at 3:56 pm
Oct 30, 2010 at 4:16 pm -
This shouldn't be the behaviour. 
 is invalid for document conformance, but what is conforming doesn't matter here. What matters here is the parser conformance requirements, which for tokenizing ...
Geoffrey Sneddon
Oct 26, 2010 at 4:34 pm
Oct 26, 2010 at 4:50 pm -
Hi, When php is invoked from the command line with -h we get exit code 0 as expected: -bash-3.2# php -h ; echo $? Usage: php [options] [-f] <file [--] [args...] php [options] -r <code [--] [args...] ...
John Carter
Oct 26, 2010 at 8:29 am
Oct 26, 2010 at 11:00 am -
While performing a build on AIX433 I get the following error. /data/prj/php-5.2.14/ext/zip/lib/zip_name_locate.c: In function `_zip_name_locate': ...
Michael Felt
Oct 19, 2010 at 3:21 pm
Oct 19, 2010 at 3:56 pm -
Hi! Thanks, the patch was applied. You'll see it online in a day or two. -- Stanislav Malyshev, Software Architect SugarCRM: http://www.sugarcrm.com/ (408)454-6900 ext. 227
Stas Malyshev
Oct 11, 2010 at 8:02 pm
Oct 11, 2010 at 8:16 pm -
Hi, The comment on this commit: http://svn.php.net/viewvc?view=revision&revision=303912 suggest getrandmax() and mt_getrandmax() were to be deprecated, but it seems Kalle might have typoed and ...
Michael Maclean
Oct 4, 2010 at 7:43 pm
Oct 5, 2010 at 11:08 am -
The From: header is actually valid in http (see section 14.21 of RFC 2616) and is appropriately used in PHP, as it is. Yes, this should arguably be a context option for http/ftp wrappers, though one ...
Gustavo Lopes
Oct 30, 2010 at 1:44 pm
Oct 30, 2010 at 1:44 pm -
hi, Removing the From header for non ftp request sounds good as it is invalid. However I don't see the need to introduce a global ini setting. This kind of information are protocol specific and ...
Pierre Joye
Oct 30, 2010 at 11:27 am
Oct 30, 2010 at 11:27 am -
Hi. As you may or may not know, the "zend_bool" arg_info- pass_by_reference, may take three values: 785 #define ZEND_SEND_BY_VAL 0 786 #define ZEND_SEND_BY_REF 1 787 #define ZEND_SEND_PREFER_REF 2 ...
Gustavo Lopes
Oct 26, 2010 at 7:04 pm
Oct 26, 2010 at 7:04 pm -
Hi everybody, Hope you all are fine. I am trying to create some small SAPI application that should serve specific network requests. Everything went well at the beginning. But I've noticed that ...
Yuriy Mykula
Oct 25, 2010 at 3:00 pm
Oct 25, 2010 at 3:00 pm -
Hi! New PLAN for 5.4 Alpha or Beta? Derick <mailto:derick%40php.net ? pAUL gAO / gaochunhui@gmail.com
高春辉
Oct 20, 2010 at 7:22 pm
Oct 20, 2010 at 7:22 pm -
Thanks a lot, you really made my day! But I think there are a lot more places, like zend_update_property() etc... Mike
Michael Wallner
Oct 15, 2010 at 6:44 am
Oct 15, 2010 at 6:44 am -
This is a patch to fix "Bug #52732 Docs say preg_match() returns FALSE on error, but it returns int(0)" (http://bugs.php.net/bug.php?id=52732). The documentation states that preg_match should return ...
Jamie Garside
Oct 7, 2010 at 1:44 pm
Oct 7, 2010 at 1:44 pm -
惠新宸
Oct 7, 2010 at 4:16 am
Oct 7, 2010 at 4:16 am
Group Overview
group | php-internals |
categories | php |
discussions | 31 |
posts | 211 |
users | 66 |
website | php.net |
66 users for October 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)