Search Discussions
-
I have finished a patch that implements a working version of late static binding. I used the notes from the Paris PDM as my guidelines for implementation. ...
Mike Lively
Feb 23, 2006 at 10:06 pm
Mar 31, 2006 at 4:42 pm -
Guys and guyess, Sara and Dmitry's patch to introduce labelled breaks was discussed on internals@ ever-so-briefly at the beginning of December, but there was never any decision made over it. Given ...
Steph Fox
Feb 18, 2006 at 5:16 pm
Feb 23, 2006 at 4:10 am -
Hi, In the last days I've exchanged some e-mails with PCRE's author because of one more bug that appeared in our database about segfaults in PCRE (related to stack overflows). PCRE can consume a lot ...
Nuno Lopes
Feb 21, 2006 at 11:00 pm
Feb 27, 2006 at 5:54 am -
Hi, purely selfish request here, I'd like to make a minor change to the parser... Just a bitty one... You won't even feel it... Currently, when the parser encounters: expr1 expr2 it quietly (and ...
Sara Golemon
Feb 16, 2006 at 5:20 pm
Feb 18, 2006 at 9:23 pm -
Hi, I'd like to suggest that we revisit the output control (output buffering) code base. The current implementation uses way too less commands to do too many different operations, which almost always ...
Michael Wallner
Feb 27, 2006 at 11:51 am
Mar 8, 2006 at 12:03 pm -
You probably saw that I have committed initial implementation of TextIterator. The impetus for this is that direct indexing of Unicode strings via [] operator is slow, very slow, at least currently. ...
Andrei Zmievski
Feb 3, 2006 at 12:54 am
Feb 4, 2006 at 7:59 am -
I had an issue with an extension that I previously posted to this list and it was suggested I update to the newer API which might provide a solution to the problem. Taking a somewhat safe approach I ...
D. Walsh
Feb 22, 2006 at 5:48 am
Mar 1, 2006 at 10:44 am -
Hello internals, i just made up a tiny patch that allows us to deprecate functions. The background is that in the past we changed to issue E_STRICT or E_NOTICE for stuff we are going to change in ...
Marcus Boerger
Feb 19, 2006 at 10:57 am
Feb 20, 2006 at 9:29 pm -
Hello: We have a very high-volume site that runs across a cluster of several machines which needs to have access to our back end storage platform, which needless to say is very busy. I have been ...
James M Luedke
Feb 1, 2006 at 7:39 pm
Feb 2, 2006 at 1:46 am -
A quick question about using iterators in C code: If it sufficient to use the interface gotten from zend_class_entry- get_iterator to handle userland classes which implement Iterator ? The attachment ...
L0t3k
Feb 15, 2006 at 5:25 pm
Feb 17, 2006 at 8:18 am -
Can someone explain the following to me? echo "DEBUG:\n"; var_dump($keys); var_dump($keys['file']); var_dump(isset($keys['NOTEXISTING'])); var_dump(isset($keys['file'])); exit; DEBUG: string(19) ...
Ian P. Christian
Feb 9, 2006 at 9:54 pm
Feb 9, 2006 at 10:44 pm -
Hi all. I'm using php 5.1.2 compiled from source, with Apache 2.2.0 and MySQL 5.0.18 on SuSE Linux 9.2 pro. I really do not see the need to keep telling php I'm refering to the properties and method ...
Php
Feb 24, 2006 at 2:13 pm
Feb 25, 2006 at 2:46 am -
In PHP 5.0.x, I can chain function calls like this: $obj- method()- anotherMethod(); In PHP 5.1.x, this code results in an error: parse error, unexpected T_OBJECT_OPERATOR in ... I've looked through ...
Mark Spruiell
Feb 21, 2006 at 10:04 pm
Feb 22, 2006 at 8:20 am -
Hi, Is the PHP manual correct in that fclose() returns a bool, but a custom wrapper stream_close() is void? Would like to signal a problem if I have a problem closing a custom stream. Jared
Jared Williams
Feb 13, 2006 at 12:11 pm
Feb 16, 2006 at 12:20 pm -
I've been coding modules using the current available API and I've recently tried compiling PHP-5.1.2 for Apache 2.0 and I'm not obtaining the expected results when a function that should return an ...
D. Walsh
Feb 11, 2006 at 12:24 pm
Feb 11, 2006 at 7:44 pm -
PHP developers, Are the requirements for PHP 6 set in stone? I saw in the minutes from the Paris meeting that a 64bit integer has been proposed. I am curious if it would make sense to allow integers ...
Ezra Nugroho
Feb 9, 2006 at 6:53 pm
Feb 9, 2006 at 7:33 pm -
We have an application that we believe could really benefit from using spread. http://www.spread.org/. Unfortunately, the spread package in pecl has not been maintained and does not seem to work. Our ...
Brian Moon
Feb 7, 2006 at 11:15 pm
Feb 8, 2006 at 3:46 pm -
I have some questions about the Apache 2 SAPI. We had been using apache_child_terminate to control memory usage with Apache 1.3. This function is not available with the Apache 2 SAPI. Is this ...
Brian Moon
Feb 2, 2006 at 7:39 pm
Feb 3, 2006 at 4:34 am -
Hey, I'm nuking safe_mode and I found something odd. In streams, php_plain_files_unlink() only checks php_check_open_basedir() when ENFORCE_SAFE_MODE is flagged. I was planning on nuking ...
Andi Gutmans
Feb 19, 2006 at 1:02 am
Mar 9, 2006 at 11:44 pm -
Having got a PHP/C extension .so shared library working, (courtesy this mailing list), and now also ported a C++ data server to Linux, which could also be a (C++) .so, the obvious question is: - can ...
Andrew Mather
Feb 13, 2006 at 4:28 pm
Feb 20, 2006 at 9:48 am -
Hi, Look at the following example: --- <?php class Foo { public $bar; function __construct() { $this- bar- baz = 'blah'; } } $foo = new Foo(); print_r($foo); ? -- It results in: --- Foo Object ( ...
Morten Fangel
Feb 16, 2006 at 11:32 am
Feb 16, 2006 at 12:57 pm -
Hi all, I've started cautiously poking PHP 6 so I can keep an eye on how the Unicode support is going and see what kind of work we'll eventually need to do to port MediaWiki for it... One thing I ...
Brion Vibber
Feb 13, 2006 at 9:08 am
Feb 13, 2006 at 7:56 pm -
My thanks to the contributors and for the resource documentation that: a) has confirmed that writing extensions without recompiling PHP is possible b) have provided sample code that requires ...
Andrew Mather
Feb 10, 2006 at 2:42 pm
Feb 11, 2006 at 12:13 am -
This patch is untested, my apologies for that. I don't have a working Visual C++ environment in which to compile PHP at the moment. I have, however, tested the concepts involved. I can also provide ...
Tim Starling
Feb 6, 2006 at 3:01 am
Feb 7, 2006 at 6:58 am -
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (394 total including feature requests) ===============================================[*Compile Issues]============== 36204 ...
Internals
Feb 6, 2006 at 8:30 am
Feb 27, 2006 at 8:30 am -
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (624 total including feature requests) ===============================================[*Configuration Issues]======== 36257 Open ...
Internals
Feb 6, 2006 at 8:01 am
Feb 27, 2006 at 8:00 am -
The Unicode support design document in README.UNICODE discusses three types of strings, IS_UNICODE, IS_STRING, and IS_BINARY, and specifies two new casts, (unicode) and (binary). The spec allows ...
Brion Vibber
Feb 14, 2006 at 11:56 am
Feb 20, 2006 at 6:59 pm -
Hello! And here I am, back with more SAPI questions. Having abandoned my earlier project as unworkable, I'm trying to build a MUD server in Java...and I want people from within the MUD server to be ...
Ben Trafford
Feb 21, 2006 at 10:31 am
Feb 24, 2006 at 12:13 pm -
http://phpfi.com/103442 -- Sebastian Bergmann http://www.sebastian-bergmann.de/ GnuPG Key: 0xB85B5D69 / 27A7 2B14 09E4 98CD 6277 0E5B 6867 C514 B85B 5D69
Sebastian Bergmann
Feb 21, 2006 at 9:44 pm
Feb 22, 2006 at 10:18 am -
""Marcus Boerger"" <[email protected] wrote in message news:[email protected]... any reason not to use offsetof(). The above does not compile on Windows.
L0t3k
Feb 17, 2006 at 4:23 am
Feb 17, 2006 at 8:24 am -
Andrei, check out this diff. It adds config protection for break iteration.. Clayton ""Andrei Zmievski"" <[email protected] wrote in message news:[email protected]... begin 666 ...
L0t3k
Feb 11, 2006 at 3:16 am
Feb 11, 2006 at 6:27 pm -
All the examples I have found regarding writing PHP extensions assume that I should want to rebuild the PHP core module. I consider this approach undesirable for several reasons: a) I don't expect to ...
Andrew Mather
Feb 9, 2006 at 12:31 am
Feb 9, 2006 at 12:41 am -
I posted this yesterday to the install group, but I think maybe it should be internals group. I am wondering if there is a problem with the getgid, getegid or set versions. How can I test this to ...
Kjc
Feb 24, 2006 at 5:25 pm
Mar 16, 2006 at 1:29 pm -
The code below echoes "it works" on PHP_5_1 and HEAD but raises a notice on the other branches. <?php class Test { public function __get($offset) { switch ($offset) { case 'hello': return $this- ...
Mike Naberezny
Feb 27, 2006 at 5:49 pm
Feb 28, 2006 at 9:13 pm -
My suggestion on IRC was FETCH_PROPS_POST_CTOR, it is not that long and self explain itself. --Pierre
Pierre
Feb 24, 2006 at 4:10 pm
Feb 24, 2006 at 4:36 pm -
Hi all, There are 174 compiler warnings in the PHP_5_1 branch under MSVC at present, so this is an attempt to get the number down a bit (like, by around 20%) by getting rid of the simpler ones. I've ...
Steph Fox
Feb 24, 2006 at 2:05 pm
Feb 24, 2006 at 2:16 pm -
George Schlossnagle sent me the following link to a a tutorial by Jay Smith: http://142.166.76.45/software/php5cpp/php5cpp/ This provides full code for a C++ based extension. On a Suse 9.3 ...
Andrew Mather
Feb 20, 2006 at 10:01 am
Feb 20, 2006 at 11:21 am -
Working with large strings and arrays (few MB) php does large amount of reallocs. We can reduce them by preallocating memory when output size can be predicted. How about applying such patch? It would ...
Wojtek Meler
Feb 20, 2006 at 10:41 am
Feb 20, 2006 at 10:57 am -
We would like to install 5.1.2 to resolve a security problem however we have discovered that doing so breaks the php_zip.dll facilities. Here's a link to the bug report ... ...
Kip Krueger
Feb 17, 2006 at 7:31 pm
Feb 17, 2006 at 8:12 pm -
Hi, ^^^^^ above endif is misplaced, and prevents build without --enable-debug. Regards, -- Michael - <mike(@)php.net http://dev.iworks.at/ext-http/http-functions.html.gz
Michael Wallner
Feb 13, 2006 at 2:09 pm
Feb 13, 2006 at 3:37 pm -
I'm one of the developers of the native IBM DB2 driver for PHP. Therefore I would like to get an account for updating the driver and the documentation.
Helmut Tessarek
Feb 9, 2006 at 12:48 am
Feb 9, 2006 at 3:12 pm -
Hi all, When I load the simple example for geocoding with this code: <?php // Create new instance of the SoapClient class // You'll need to download the WSDL file from: // ...
Greg Beaver
Feb 3, 2006 at 4:22 pm
Feb 6, 2006 at 3:22 pm -
c:\home\php\php-5.1\sapi\cgi\fastcgi.c(635) : error C2275: 'HANDLE' : illegal us e of this type as an expression c:\programme\microsoft visual studio 8\vc\platformsdk\include\winnt.h(33 4) : see ...
Sebastian Bergmann
Feb 4, 2006 at 10:02 am
Feb 6, 2006 at 12:39 pm -
I am getting the following with current PHP_5_1 on Windows. No small reproducing script, yet. Debug Error! Program: c:\home\php\php-5.1\debug_ts\php.exe Module: ...
Sebastian Bergmann
Feb 2, 2006 at 7:53 am
Feb 2, 2006 at 6:13 pm -
I know that my english is not 'production level' one, but the following misunderstood all over the bug[1] evolution is may result of low interest of the good people that wokring hard to close the ...
Moshe Doron
Feb 2, 2006 at 2:35 pm
Feb 2, 2006 at 2:44 pm -
Hello, I'm seeing a problem with an installation of PHP4/Apache2 and I don't know where the cause of the problem is. I'm using the Debian Sarge versions of apache2/php4 which are ii ...
Sebastian Wiesinger
Feb 28, 2006 at 10:06 am
Feb 28, 2006 at 10:06 am -
Extend PHP
Dinh Ngoc Hung
Feb 27, 2006 at 10:47 am
Feb 27, 2006 at 10:47 am -
Hi guys, I am working on script that will assemble data to create a page and have come to an interesting conclusion. Its a perfect fit for recursion as part 1 of the doc will require additional parts ...
Brian Moon
Feb 24, 2006 at 10:05 pm
Feb 24, 2006 at 10:05 pm -
Right now HEAD doesn't compile: /homes/andrei/dev/php-src/ext/libxml/libxml.c: In function `php_libxml_register_export': /homes/andrei/dev/php-src/ext/libxml/libxml.c:844: incompatible type for ...
Andrei Zmievski
Feb 23, 2006 at 11:10 pm
Feb 23, 2006 at 11:10 pm -
per suggestions, changed permissions to allow write access on target directories for apache user Cheers, Andrew.
Andrew Mather
Feb 20, 2006 at 5:44 pm
Feb 20, 2006 at 5:44 pm
Group Overview
group | php-internals |
categories | php |
discussions | 76 |
posts | 291 |
users | 96 |
website | php.net |
96 users for February 2006
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)