Search Discussions
-
Please allow me to introduce myself briefly: I'm Wietse Venema from IBM Research, also known as the creator of the open source Postfix mail system, co-author of the Coroner's toolkit and SATAN, and ...
Wietse Venema
Dec 15, 2006 at 8:16 pm
Jan 8, 2009 at 2:37 pm -
Is there any interest in adding support for logging of mail() calls and/or adding options that allow identification of who sent the e-mail. I've wrote a quick patch that enables this functionality ...
Ilia Alshanetsky
Dec 13, 2006 at 9:52 pm
May 5, 2007 at 2:54 pm -
This is an exploratory e-mail, so don't panic just yet :-). I am thinking of moving the COM, mhash and socket extensions to PECL in 5.2 and 6.0 releases and was hoping to hear for & against ...
Ilia Alshanetsky
Dec 8, 2006 at 4:04 pm
Dec 20, 2006 at 10:20 am -
When serializing binary strings in PHP 6, we have to escape non-ASCII characters and then unescape them on unserialization. This patch adds the unescapement support to PHP 5.2, in order to make it ...
Andrei Zmievski
Dec 1, 2006 at 9:44 pm
Dec 15, 2006 at 4:00 am -
Hi. I am trying to make my first php extension :) I am sorry, if the question would be too newbiesh, but I just couldn't find a more correct place to ask here is the code: ...
Alexey Zakhlestin
Dec 2, 2006 at 8:30 pm
Dec 6, 2006 at 7:54 am -
Hello, Yesterday, Ilia, Andrei and I discussed the possible solutions to solve the input encoding in php6 (unicode). I will try to describe them here. I do not go too deep in the details, the goal is ...
Pierre
Dec 14, 2006 at 9:06 pm
Jan 11, 2007 at 3:29 am -
As we discussed on irc, mime_magic is now deprecated, there is currently no function available to detirmine mimetype without pecl/pear. You could use exec('file -bi'..) or some other fallback or ugly ...
Kevin Waterson
Dec 30, 2006 at 11:11 pm
Jan 2, 2007 at 11:30 pm -
Hi all, I rewrote is_numeric_string/unicode to be faster and change a couple things. The changes being: 1) Previously, large numbers (very long or "1e500") that became INF were ignored (Bug #26349), ...
Matt Wilmas
Dec 12, 2006 at 2:58 pm
Dec 19, 2006 at 1:36 pm -
Hi Dmitry, By the way, why do we need to increase it again in 5.2 during the RC phase? I'm not really concerned about this change but I know many who will be or will complain. --Pierre
Pierre
Dec 21, 2006 at 1:17 pm
Dec 22, 2006 at 9:53 am -
Hi all, In the spirit of dumping Win95 support in PHP 5, I'd like to officialy dump Windows 98&ME support from this point onwards. We are sticking to old Windows APIs because of this support which ...
Andi Gutmans
Dec 20, 2006 at 10:47 pm
Dec 28, 2006 at 9:09 pm -
Antony and I just had a spirited discussion on IRC about his latest patches to convert_to_unicode() and convert_to_string(). The specific troublesome point was conversion of IS_OBJECT type. His point ...
Andrei Zmievski
Dec 27, 2006 at 8:02 pm
Jan 3, 2007 at 8:35 pm -
I noticed the make test command may need the "-n" flag added so that it will exclude already installed ini files. Specifically this causes a problem when running make test on a system that already ...
Brian Shire
Dec 1, 2006 at 2:25 am
Dec 9, 2006 at 8:49 pm -
Consider the following code: <?php class ParentC { public $children = array(); public function __construct() { print "ParentC::__construct()\n"; } public function __destruct() { print ...
Sebastian Bergmann
Dec 10, 2006 at 9:58 am
Dec 10, 2006 at 11:31 pm -
Hi, I'm struggling with the problem that cross-referenced objects don't get destroyed. I can off course write a method to break the cross-reference, but that's kind of a pain in the butt, especially ...
Arnold Daniels
Dec 5, 2006 at 1:21 am
Dec 10, 2006 at 10:30 pm -
Hi Some of my PHP scripts use a large volume of memory. Is there a way I can: 1) Increase the script memory limit, and 2) Force a garbage collect at script end (and reset the limit). I am currently ...
Bruce Bailey
Dec 1, 2006 at 5:09 pm
Dec 5, 2006 at 6:30 pm -
Hi, why do I get warnings when I have failures in my ext/soap ctor? try { $client = new SoapClient('http://i_dont_exist.com/some.wsdl', array('exceptions' = true)); } catch (Exception $e) { } I guess ...
Lukas Kahwe Smith
Dec 19, 2006 at 12:15 pm
Jul 27, 2008 at 1:09 pm -
Hi all, A couple questions regarding the printf changes (internal and userland) a couple weeks ago... Now the internal %f, %g, and %G are locale-aware, which they weren't before, right? Is this how ...
Matt Wilmas
Dec 22, 2006 at 1:42 pm
Jan 6, 2007 at 3:55 pm -
Hello all. Attached is the patch which adds Unicode support to *printf() functions stack. We (Andrei and me) made several assumptions that are worth mentioning: sprintf() and vsprintf(): - use ...
Antony Dovgal
Dec 11, 2006 at 10:48 pm
Dec 20, 2006 at 6:25 pm -
Dear sirs, this patch for PHP5 adds four new string functions into the extension 'standard': - hexdump() - packhex() - smart_hexdump() - smart_packhex() The description of these functions and smart ...
Alexander Demin
Dec 14, 2006 at 4:16 pm
Dec 26, 2006 at 8:54 am -
It's been a concept stuck in my mind since I first looked into ZE2.1 and saw what compiled variables were, and a recent blog post (http://php100.wordpress.com/2006/11/24/optimizations/) (which got ...
Sara Golemon
Dec 4, 2006 at 5:49 am
Dec 6, 2006 at 4:32 pm -
Hello, I had a look at http://bugs.php.net/37799 and I would really like to have a little warning added upon SSL connection failure. From my understanding, the silent fall back to a normal connection ...
Mehdi Achour
Dec 29, 2006 at 12:47 pm
Feb 11, 2007 at 1:12 pm -
Hi, Using the %e format specifier in the *printf() functions gives one less decimal place than it should. The recent *printf changes only happened to fix the problem when precision is 0. The new %E ...
Matt Wilmas
Dec 22, 2006 at 12:20 pm
Dec 25, 2006 at 1:44 am -
Hi, Below are 2 patches for the latest 5.2. The first patch rewrites pcre_get_compiled_regex_ex() in ext/pcre/php_pcre.c from line 417, saving up to 3 comparison statements (?:). The second patch ...
Ron Korving
Dec 14, 2006 at 1:21 am
Dec 14, 2006 at 8:23 pm -
We could, but we'd need to teach developers that ext/*/CREDITS and credits.c should be kept UTF-8; else it'll break if anyone commits non-ASCII and nobody watches. BTW, phpcredits() and phpinfo() ...
Michael Wallner
Dec 12, 2006 at 7:00 am
Dec 12, 2006 at 6:42 pm -
Hello, For good reasons, if one can work around filter, filter itself makes no sense. There is a bug with magic quotes (which aim to disappear in 6.x). If you have found a bug, can you please open a ...
Pierre
Dec 8, 2006 at 7:35 pm
Dec 9, 2006 at 8:57 am -
Hi, for the sake of saving time during development, especially in the linking phase I decided to disable few extensions. In HEAD --disable-all is kind of borked, PHP won't compile afterwards, missing ...
Andrey Hristov
Dec 6, 2006 at 4:03 pm
Dec 6, 2006 at 4:27 pm -
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (647 total including feature requests) ===============================================[*Compile Issues]============== 39372 ...
Internals
Dec 4, 2006 at 9:31 am
Dec 25, 2006 at 9:30 am -
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (626 total including feature requests) ===============================================[*Regular Expressions]========= 39723 Open ...
Internals
Dec 4, 2006 at 9:01 am
Dec 25, 2006 at 9:01 am -
Hi Ilia, all This fix is incorrect.. %f became locale aware internally after the recent *printf changes causing all kinds of side affects like this one. We should: a) revert that change (i.e. make %f ...
Hannes Magnusson
Dec 22, 2006 at 3:57 pm
Dec 24, 2006 at 12:46 pm -
Hi, Just a simple patch for 5.2 to save smart_str_appends()'s strlen() calls in date_format(). It's already done in HEAD. Seems pretty safe for 5.2.1. :-) I also noticed that if the format string ...
Matt Wilmas
Dec 22, 2006 at 5:07 am
Dec 22, 2006 at 3:29 pm -
Hello all, Since we will soon be switching to the new Microsoft compiler for making official PHP builds I have created a couple test builds to see how it goes. There were some initial problems and we ...
Edin Kadribasic
Dec 18, 2006 at 11:03 pm
Dec 19, 2006 at 3:46 pm -
Hello, I'm Marc and I'm new to this list. Whew! That was easy! I've read in the archive about a patch for supporting openssl pkcs12, but nothing seems to be done so far. Since I was missing the same ...
Marc Delling
Dec 15, 2006 at 5:27 pm
Dec 17, 2006 at 2:45 am -
Hi, Here are patches to use Brian Shire's optimizations (applied by Ilia to 5.2 the other day) in a couple more places, and for HEAD. In Unicode mode, concat_function() is up to 20%+ faster! ...
Matt Wilmas
Dec 13, 2006 at 1:23 pm
Dec 13, 2006 at 7:09 pm -
Hi, I was trying to make PHP a bit more type-safe, but until now without success. I just want to do this for local testing, it's not important but it would be nice if it would work somehow.. Are ...
Corne
Dec 5, 2006 at 9:00 pm
Dec 9, 2006 at 11:23 pm -
Hi all! I'm having trouble with my server(s) for some weeks now and did not find any solution for now. My System is Opensuse 10.1 (32 bit) with Apache 2.2.3 and PHP 4.4.5-dev as apache module (latest ...
Jan Schröter
Dec 1, 2006 at 8:25 am
Dec 5, 2006 at 3:48 pm -
Folks: I came across a subtle bug a developer introduced into our application. It took us a month to realize the bug was there because PHP didn't throw a notice. Here is a simplified version of what ...
Daniel Convissor
Dec 29, 2006 at 9:07 pm
Dec 30, 2006 at 4:55 pm -
Hello all, I was told this might be a better list to ask this question... I was experimenting with the imap_* library functions trying to see if I could get a PHP script to access a folder on our ...
Richard Morris
Dec 13, 2006 at 6:18 pm
Dec 18, 2006 at 7:42 pm -
Hi, Trying to compile current php-5.2-dev on Windows using the new VC++ 8.0 (2005). PHP compiles without problems but on startup ends up in and endless loop at around line 768 of zend_alloc.c. rand() ...
Edin Kadribasic
Dec 17, 2006 at 5:25 pm
Dec 17, 2006 at 11:40 pm -
The first release candidate for PHP 5.2.1 is now available for download. The source tarballs can be found here: http://downloads.php.net/ilia/php-5.2.1RC1.tar.bz2 (md5sum: ...
Ilia Alshanetsky
Dec 15, 2006 at 2:09 am
Dec 15, 2006 at 2:37 pm -
Hi, The strlen() check on line 4730 of ext/standard/string.c is pointless because of the length assignment in line 4720. Below is a patch (against latest 5.2) to remove them. Regards, Ron Korving ...
Ron Korving
Dec 12, 2006 at 7:33 pm
Dec 13, 2006 at 3:40 pm -
The whole issue comes up regularly on various lists, e. g. Propel or Phing suffer from it. Also see http://bugs.php.net/bug.php?id=33595. Working around this in userland may be possible but is at ...
Matthias Pigulla
Dec 11, 2006 at 9:18 am
Dec 12, 2006 at 8:11 pm -
Ok, I think COM has been sufficiently well defended for now, so it stays hopefully someone(s) will find the time to look at the bugs and close and bogus them as needed. As far mhash & socket, I agree ...
Ilia Alshanetsky
Dec 9, 2006 at 12:37 pm
Dec 9, 2006 at 1:24 pm -
I translated a part of the php-gtk-doc. And send them to the mail list of php-gtk-doc.That`s not convenience. I need a account to submit the zh_cn translation of php-gtk-doc. Thanks!
Xing Xing
Dec 7, 2006 at 5:23 pm
Dec 7, 2006 at 5:33 pm -
I just read the thread regarding support for INI Includes at: http:// marc2.theaimsgroup.com/?t=103290004500008&r=1&w=2 I had made another patch for this before I saw the post (A little bit of a ...
Brian Shire
Dec 7, 2006 at 4:44 am
Dec 7, 2006 at 4:38 pm -
What IDEs are people using and prefer for PHP development? preferably on Linux or Mac OS X? I'm just starting to poke around in the internals, and it would be very helpful to have something that let ...
Elliotte Harold
Dec 4, 2006 at 2:50 pm
Dec 4, 2006 at 3:57 pm -
Hi Internals A colleague of mine is currently working on creating new test cases to improve the coverage of the PHP test cases and whilst attempting to write new tests for the assert extension hit on ...
Andy Wharmby
Dec 20, 2006 at 6:01 pm
Dec 21, 2006 at 2:56 pm -
Hello all, i am doing some unicode stuff and missng a few things and found a few issues: - ZVAL_STRL() is inconsistent with the rest of the ZVAL_*L(). The former has order: zval, zstr, len, type, ...
Marcus Boerger
Dec 19, 2006 at 9:08 pm
Dec 19, 2006 at 10:03 pm -
Hi, there is one issue that I experience since I started using 5.2.0 and especially the new correct __toString behaviour. Generally it works fine. But sometimes I find it useful to get __toString ...
Marian Kostadinov
Dec 19, 2006 at 8:22 am
Dec 19, 2006 at 9:10 am -
Hi all Looking over skipped tests I noticed, one minor version to late, that inet_ntop() and inet_pton() are not available on fbsd. The reason is unfortunate macro expansion where inet_ntop & ...
Hannes Magnusson
Dec 18, 2006 at 7:30 pm
Dec 18, 2006 at 7:41 pm -
Contribute to PEAR project Image_3D.
Jakob Westhoff
Dec 18, 2006 at 2:06 pm
Dec 18, 2006 at 2:08 pm
Group Overview
group | php-internals |
categories | php |
discussions | 84 |
posts | 480 |
users | 107 |
website | php.net |
107 users for December 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)