Search Discussions
-
328
PHP 6.0 Wishlist
Since we are breaking a lot of stuff in 6.0, at least with Unicode_semantics=On I am wondering if it may not be time to break some more stuff and do a bit of spring cleaning. It would mean many apps ...Rasmus Lerdorf
Aug 12, 2005 at 5:48 pm
Oct 22, 2005 at 5:20 pm -
Hei, currently if you pass a wrong object's type to a typehinted parameter: derick@kossu:~$ cat /tmp/foo.php <?php class foo { function bar(foo $a) { } } $a = new foo; $a- bar(new stdClass); ? ...
Derick Rethans
Aug 8, 2005 at 9:50 am
Aug 30, 2005 at 7:40 am -
Hello! we're finding some problems with property overloading (__get() and __set()). Here is an RFC describing what we'd like to see changed. Please comment on this. Introduction: PHP currently ...
Derick Rethans
Aug 2, 2005 at 1:27 pm
Sep 1, 2005 at 11:46 am -
Before we go breaking things, please read this document that describes how PHP will support the Unicode standard natively. Hopefully the attachment will work. Thanks, -Andrei
Andrei Zmievski
Aug 10, 2005 at 7:31 am
Aug 26, 2005 at 6:02 pm -
37
RC1
Hi all, Another reminder, I'd like to roll RC1 on Monday. Everyone will be back from OSCON and we can start the Unicode merge right afterwards. AndiAndi Gutmans
Aug 5, 2005 at 8:52 pm
Aug 9, 2005 at 11:44 pm -
I work at a company with a high volume web site (you know the drill: LVS directors managing a farm of webservers (with php accelerators) to a few database servers (MySQL if you want to know -- anyone ...
Steve roussey
Aug 9, 2005 at 3:51 am
Aug 12, 2005 at 4:46 pm -
Now that we branched it's time to rename HEAD to something else than 5.1 in order to have different version numbers. Although the name PHP 5.5 was mentioned before, I do think we should call it PHP ...
Derick Rethans
Aug 9, 2005 at 8:41 am
Aug 10, 2005 at 3:16 pm -
23
PHP 5.1
For those of you who submitted patches to 5.1 since RC1 - do you believe that we need another RC or can we go ahead and roll 5.1 final and run a sanity test for 24 hours? I went over the patches, ...Zeev Suraski
Aug 30, 2005 at 2:06 am
Sep 5, 2005 at 2:42 pm -
Hi, You can look into proposal patch that implements support for constants and static methods for internal classes. The original patch was written by Michael and improved by me. The patch is maden ...
Dmitry Stogov
Aug 30, 2005 at 7:59 am
Aug 31, 2005 at 10:45 pm -
www.php.net/~zeev/php-5.0.5RC1.tar.gz www.php.net/~zeev/php-5.0.5RC1.tar.bz2 If there are no stoppers I'd like to release it towards the end of the week. Zeev
Zeev Suraski
Aug 22, 2005 at 10:43 am
Aug 31, 2005 at 9:24 pm -
I've noticed that in a script of mine, memory consumption can explode quite drastically when Exceptions are thrown, opposed to very normal memory consumption when exceptions are not thrown. This is ...
Ron Korving
Aug 9, 2005 at 3:07 pm
Aug 10, 2005 at 2:55 pm -
Hi, I just synced php-src/pear (PHP_5_0/PHP_5_1/PHP_4_4) with pear-core (PEAR_1_3). May god bring the day when this is no longer necessary sooner rather than later. Greg
Greg Beaver
Aug 22, 2005 at 10:18 pm
Aug 26, 2005 at 2:43 pm -
I don't really understand how the current xml namespace handling in simplexml is useful. test.xml: <rss version="2.0" xmlns:media="http://search.yahoo.com/mrss" <node <title Title1</title <title ...
Rasmus Lerdorf
Aug 19, 2005 at 2:43 am
Aug 23, 2005 at 8:00 pm -
Attached is the latest version of the namespace patch! It finally includes namespace imports and it even includes anonymous namespace support. Also, the previous bison shift/reduce conflict has been ...
Jessie Hernandez
Aug 2, 2005 at 4:07 am
Aug 3, 2005 at 9:49 pm -
Hi list, If after `... checkout php-src` I go to directory php-src and remove ZendEngine2 directory, then run `... up -APd` don't restore this directory from repo. How I can update my copy to repo ...
Pasha Zubkov
Aug 4, 2005 at 11:52 am
Aug 9, 2005 at 4:22 am -
12
5.0.5 RC2
Any outstanding things for this release beyond PEAR and XMLRPC? I'd like to roll RC2 as soon as possible. Thanks, ZeevZeev Suraski
Aug 24, 2005 at 8:11 am
Aug 26, 2005 at 9:34 am -
Hi, I revised the previous patch to actually working code. Affected files: zend.h zend_API.c, zend_API.h zend_builtin_functions.c zend_compile.c zend_object_handlers.c zend_opcode.c ...
Michael Wallner
Aug 11, 2005 at 2:58 pm
Aug 18, 2005 at 7:16 am -
If I understood correctly, the fixed XML_RPC pear package was updated to the PHP_5_1 branch already. Why is ext/xmlrpc still required? --Jani
Jani Taskinen
Aug 28, 2005 at 12:49 am
Aug 29, 2005 at 12:48 pm -
Hello, As there is no way to find a solution to the two different vision (pedantic, non pedantic ;). I propose to do not deprecate is_a. It cannot hurt neither is_a (is_a uses instanceof too) or ...
Pierre-Alain Joye
Aug 10, 2005 at 7:46 am
Aug 20, 2005 at 12:12 pm -
11
GCOV
Before we deep-freeze the CVS, I'd like to get my GCOV stuff committed. The changes are relatively minor and I've already run it past Andi. I'm trying to get around one last problem that maybe ...John Coggeshall
Aug 9, 2005 at 8:38 pm
Aug 9, 2005 at 9:30 pm -
By now, Unicode merge into the public tree has taken place. How do you get started? 1. Take a deep breath. 2. Download and build ICU 3.4. Location: ...
Andrei Zmievski
Aug 12, 2005 at 12:05 am
Aug 13, 2005 at 3:43 am -
When I receive a warning that an XSD file could not be opened, it urlencodes the filepath. That doesn't make sense to me... Example: Warning: I/O warning : failed to load external entity ...
Ron Korving
Aug 1, 2005 at 7:38 am
Aug 2, 2005 at 4:18 pm -
Wez, my understanding is that Win32 uses UCS2, so do we need to account for surrogates ? l0t3k ""Wez Furlong"" <wez@php.net wrote in message news:cvswez1123959839@cvsserver...
Cshmoove
Aug 13, 2005 at 7:30 pm
Aug 14, 2005 at 4:48 am -
Hmm, should we allow this? It is much easier to deal with having common identifier type everywhere. -Andrei
Andrei Zmievski
Aug 16, 2005 at 5:33 pm
Aug 17, 2005 at 9:23 pm -
Hiyall, A while back ext/dbx and ext/ircg were 'moved to pecl' (without any discussion, but that's not the point). However, there are no packages on pecl for either extension, which might lead people ...
Marc Boeren
Aug 3, 2005 at 2:02 pm
Aug 4, 2005 at 11:16 am -
(resending- I got the list address wrong.) OK, here is how I think about these things. I would try to keep the intent of the function in mind, not just the literal definition, when extending them ...
Tex Texin
Aug 29, 2005 at 12:51 pm
Sep 2, 2005 at 7:08 am -
Hi all, I just branched off PHP 5.1 (PHP_5_1). I will roll a tarball later on or tomorrow for RC1. Please from now on commit bug fixes to both PHP_5_1 and HEAD (and if critical, I suggest to do so ...
Andi Gutmans
Aug 9, 2005 at 4:48 am
Aug 9, 2005 at 7:48 pm -
Currently glob takes a string such as array glob ( string pattern [, int flags] ) I would like to make this array glob ( array patterns [, int flags] ) This would tidy up much code where a series of ...
Kevin Waterson
Aug 30, 2005 at 1:56 pm
Sep 1, 2005 at 3:16 am -
Hello gods of PHP development ;-) I'm just a PHP-programmer, but I've been reading the PHP6 discussions here for a while, especially the talk about MI vs interfaces. I've been all for MI up to the ...
Oliver Grätz
Aug 25, 2005 at 8:45 pm
Aug 28, 2005 at 8:14 am -
I've got a one-line fix to allow internal functions to return by reference. What happens currently is if (*return_value_ptr)- refcount <= 2 at the end of an internal function, then the ...
Sara Golemon
Aug 23, 2005 at 6:47 pm
Aug 24, 2005 at 10:44 am -
Rolland, The implementation of this is problematic for two reasons: 1) You are assuming well-formed UTF-16 here. It would be better to use U16_PREV() macro to obtain a codepoint and then put it in ...
Andrei Zmievski
Aug 19, 2005 at 6:23 pm
Aug 23, 2005 at 4:40 pm -
By popular demand, you can now get these binaries at http://downloads.php.net/zeev/php-5.0.5RC1.tar.gz http://downloads.php.net/zeev/php-5.0.5RC1.tar.bz2 as well.
Zeev Suraski
Aug 22, 2005 at 11:45 am
Aug 22, 2005 at 9:51 pm -
Same as before, with the following changes: - Fixed memory leaks. - Added __NAMESPACE__ constant. Regards, Jessie Hernandez
Jessie Hernandez
Aug 7, 2005 at 1:20 am
Aug 10, 2005 at 3:15 am -
Comments / impl suggestions please. TIA, Rolland -- [1] string substr_replace(string original, string new, int start[, int length]) Returns string where original[start..length] is replaced with new. ...
Rolland Santimano
Aug 23, 2005 at 3:23 pm
Oct 1, 2005 at 12:00 pm -
I wrote about real properies a few days ago but no one seems to be interested in it. I think that it would be nice to have real properties present in PHP. I mean properties like those in C# but a ...
Marian Kostadinov
Aug 25, 2005 at 10:29 am
Aug 31, 2005 at 2:51 pm -
Hi, I am searching for some evidence in the PHP source code that the possibility of omitting the closing PHP tag is absolutely intentional, and in fact part of the language syntax, and therefore it ...
Gabor Hojtsy
Aug 29, 2005 at 6:38 pm
Aug 30, 2005 at 4:55 am -
4
ZTS leak
In looking into a series of leaks regarding tsrm interpreter contexts with George and Wez, we came across a problem with how EG(zend_constants) is created and destroyed. Specifically it's only ...Sara Golemon
Aug 29, 2005 at 10:13 pm
Aug 30, 2005 at 4:42 am -
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (361 total including feature requests) ===============================================[*General Issues]============== 27372 ...
Internals
Aug 1, 2005 at 7:30 am
Aug 29, 2005 at 7:30 am -
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (662 total including feature requests) ===============================================[*Directory/Filesystem functions] 33867 ...
Internals
Aug 1, 2005 at 7:00 am
Aug 29, 2005 at 7:00 am -
As per bug #34199 and as Rob points out, if($obj) and if(!$obj) are handled by different opcodes and these two opcodes are inconsistent in whether they call an object's cast_object handler. if($obj) ...
Rasmus Lerdorf
Aug 24, 2005 at 9:45 pm
Aug 25, 2005 at 11:16 pm -
Hello, This is a last warning before I cleanup the GD in HEAD. The cleanup consists of: * Drop Freetype 1 support * Drop GD1 support * Remove functions getting deprecated by the precendent 2 points * ...
Pierre-Alain Joye
Aug 18, 2005 at 1:28 pm
Aug 18, 2005 at 1:50 pm -
Hi, I am using custom streams for the LOB support in PEAR::MDB2. It seems that things work nicely on PHP 4.4 and PHP 5.1.0RC1. However using todays windows 5.0.x binarys from snaps.php.net still give ...
Lukas Smith
Aug 18, 2005 at 10:40 am
Aug 18, 2005 at 1:07 pm -
So fixing internal class' static properties won't be considered? It would be a pity (and quite a long time) if that functionality will remain broken until v6. -- Michael - < mike(@)php.net
Michael Wallner
Aug 16, 2005 at 11:09 am
Aug 16, 2005 at 2:37 pm -
Right now, my patch is complete as respects classes inside namespaces, simple import, namespace imports, etc. I just made a few changes locally to see how feasible it was to allow functions inside ...
Jessie Hernandez
Aug 12, 2005 at 3:50 am
Aug 16, 2005 at 1:32 am -
Dmitry, i'm glad its fixed, but i was hoping it wouldnt get fixed this way ;-) maybe a lower impact way would have been to move the use of U_CLASS_ENTRY into zend_parse_parameters, ...
Cshmoove
Aug 12, 2005 at 12:20 pm
Aug 14, 2005 at 4:43 am -
I need to host my project: http://geocities.com/geffreyvt/php-clamavlib/
Geffrey Velasquez Torres
Aug 11, 2005 at 10:32 pm
Aug 11, 2005 at 11:07 pm -
Can somebody with access to snaps.php.net update it so that 5.1 refers to the 5.1 branch, instad of HEAD? No need to have HEAD available on there until 5.1 is released. --Wez.
Wez Furlong
Aug 10, 2005 at 11:50 pm
Aug 11, 2005 at 12:17 pm -
As already mentioned earlier, there does not seem to be any extension or core code using static properties for internal classes. I'd like to request a change in their behaviour/implementation. ...
Michael Wallner
Aug 9, 2005 at 12:07 pm
Aug 9, 2005 at 10:18 pm -
Hi All, I could not build exif and sockets extension as a shared extension(Our php set up is like windows PHPTS). With the current config.m4 I get link failure stating that php5lib not found. ...
Kamesh Jayachandran
Aug 5, 2005 at 2:19 pm
Aug 6, 2005 at 10:47 pm -
Some people have mentioned having problems where idle PHP processes hang around without freeing their memory (in a FastCGI or Apache module modes). As I have found, it's not really a memory ...
Alexander Veremyev
Aug 30, 2005 at 4:27 pm
Sep 8, 2005 at 12:02 pm
Group Overview
group | php-internals |
categories | php |
discussions | 120 |
posts | 1,157 |
users | 148 |
website | php.net |
148 users for August 2005
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)