[PHP-DEV] Freshmeat PHP Project Info is obsolete...

2002-02-12 Thread Yasuo Ohgaki
Anyone who have access to freshmeat's PHP project info probably want to update tarball URL link. It points to 4.1.0 tarball while change log URL link is for 4.1.1 -- Yasuo Ohgaki -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] passing by reference

2002-02-12 Thread Chad Cunningham
4.1.1 seems to have gotten rid of ParameterPassedByReference. What is the proper, backwards compatable way to handle this now? i.e. my code does this: case 3: if (zend_get_parameters_ex(3, username, password, status) == FAILURE) { RETURN_FALSE; } if

[PHP-DEV] Re: Bug #15523: Line Number

2002-02-12 Thread Tobias Schenck
__LINE__ (case-insensitive) The number of the line within the current script file which is being parsed. If used within a file which has been included or required, then the position within the included file is given. The documentation is on the Web-Site under the following URL:

Re: [PHP-DEV] Re: Bug #15523: Line Number

2002-02-12 Thread Jan Lehnardt
Hi, On Tue, 12 Feb 2002 16:22:47 +0100 Tobias Schenck [EMAIL PROTECTED] wrote: Would you please be so kind to close the Bug-Report? please be so kind and use the webinterface, when commenting on bugs to users, next time ;) Jan -- Q: Thank Jan? A: http://geschenke.an.dasmoped.net/ -- PHP

[PHP-DEV] Re: Bug #15523 Updated: Line Number

2002-02-12 Thread Stefan Esser
__LINE__ contains the current line number, not the callers linenumber, so its neither closed, nor bogus. Just my 2 cent Stefan -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Bug #15523 Updated: Line Number

2002-02-12 Thread Jan Lehnardt
Hi, On Tue, 12 Feb 2002 16:45:09 +0100 Stefan Esser [EMAIL PROTECTED] wrote: __LINE__ contains the current line number, not the callers linenumber, so its neither closed, nor bogus. function foo($line) { echo 'the function was called in line: '.$line } foo(__LINE__); hm? Jan -- Q: Thank

Re: [PHP-DEV] Re: Bug #15523 Updated: Line Number

2002-02-12 Thread Stefan Esser
I know myself that you can workaround with an additional parameter. I just wanted to make you guys notice that you talk about different stuff. Stefan -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] New extension: stem

2002-02-12 Thread J Smith
I know no German at all besides what I've been able to learn from Wolfenstein 3D. I just cut and pasted a random word from the snowball site into the script. Naturally, I took what was probably the only misspelled one in the list. J Sebastian Bergmann wrote: J Smith wrote: echo German:

[PHP-DEV] Re: Bug #15525: objects in sessions

2002-02-12 Thread brad lafountain
Well the class needs to be declared before the session is started... so make sure that you don't call session_start before your User class is defined and... make sure sessions_auto_start in you php.ini is set to false - Brad --- [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED]

RE: [PHP-DEV] New extension: stem

2002-02-12 Thread J Smith
It's a great little tool if you're into search engines and that sort of thing, as word stemming has been quite a useful tool in the field of information retrieval. (Actually, I've built a search engine at work, which used an earlier stemmer I wrote based on Porter's original article using

Re: [PHP-DEV] Freshmeat PHP Project Info is obsolete...

2002-02-12 Thread Peter Petermann
Hi Yasuo, I updated it on freshmeat, my update is now waiting for approval of someone of the freshmeat crew. If you see something like that on freshmeat again: it is real easy to change something, just register as a user there, then youre able to do changes on *every* project, but someone of

[PHP-DEV] Bison problems

2002-02-12 Thread Andrey Hristov
Does anyone looked at zend_language_parser.output to see that there are reported 1376 confilcts? PHP 4.1.1. Win2k possibly Linux. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] class variable problem

2002-02-12 Thread Andrei Zmievski
This doesn't make sense: ?php error_reporting(E_ALL); class foo { var $bar; } $n = new foo; echo $n-bar; ? Results in: PHP Notice: Undefined property: bar I think it's misleading in best case. Property 'bar' *is* declared, so I think it should have an entry in class's

[PHP-DEV] Bison problems

2002-02-12 Thread Andrey Hristov
Does anyone looked at zend_language_parser.output to see that there are reported 1376 confilcts? PHP 4.1.1. Win2k possibly Linux. Best regards, Andrey Hristov -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] class variable problem

2002-02-12 Thread Ivan Ristic
I think it's misleading in best case. Property 'bar' *is* declared, so I think it should have an entry in class's default_properties table, even though it's not assigned a value. I agree. There is another problem: if you do not initialize a variable then it won't be listed using

Re: [PHP-DEV] Bison problems

2002-02-12 Thread Zeev Suraski
There are only 4 conflicts. All of the rest are conflicts that are resolved according to the supplied precedence rules. Zeev At 19:32 12/02/2002, Andrey Hristov wrote: Does anyone looked at zend_language_parser.output to see that there are reported 1376 confilcts? PHP 4.1.1. Win2k

Re: [PHP-DEV] passing by reference

2002-02-12 Thread Markus Fischer
On Tue, Feb 12, 2002 at 10:05:06AM -0500, Chad Cunningham wrote : 4.1.1 seems to have gotten rid of ParameterPassedByReference. What is the proper, backwards compatable way to handle this now? PZVAL_IS_REF(z) defined in zend.h -- Please always Cc to me when replying to me on the lists.

[PHP-DEV] Zend in CVS - news

2002-02-12 Thread Andrei Zmievski
All, Zend/ZendEngine2 are now available for online access through lxr.php.net and bonsai.php.net. Also, I've added ChangeLog files to these modules and updated the changelog tool so that it will start auto-generating them. This also means that you can use '@' and '#' prefixes in Zend/ZendEngine2

[PHP-DEV] FOSDEM from London

2002-02-12 Thread Marko Karppinen
Quite far off topic, sorry, but if somebody is travelling from London Heathrow to Brussels on Saturday or back on Sunday, let's meet at the lounge for drinks or something :) --Marko -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: volker

2002-02-12 Thread Volker Richter
Dev. PHP Runtime Documentation Translation -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Freshmeat PHP Project Info is obsolete...

2002-02-12 Thread Yasuo Ohgaki
Peter Petermann wrote: Hi Yasuo, I updated it on freshmeat, my update is now waiting for approval of someone of the freshmeat crew. If you see something like that on freshmeat again: it is real easy to change something, Thank you for letting me know :) I'll apply an account. -- Yasuo

[PHP-DEV] Bug in current Object Model

2002-02-12 Thread Jason Greene
Zeev, Andi It appears that the bug we talked about in private correspondence does not just apply to object overloading. It appears to apply to normal objects as well. Consider the following code: class test { var $dummy; function do_something() { print Hello\n; } }

[PHP-DEV] CVS Account Request: phaser

2002-02-12 Thread Anderson Fortaleza
Brazilian Portuguese Translation -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] [patch] one script to handle them all

2002-02-12 Thread Lukas Schroeder
Hi, (resubmitting. i submitted this on Jan 12 before, but did not get any response.) this is a 'request_handler'-support patch for php. it applies to php-4.1.1. it only covers sapi/apache/... diffstat says mod_php4.c | 58 +- 1 files

[PHP-DEV] 80,000 posts

2002-02-12 Thread Andrei Zmievski
php-dev has had 80,000 posts to it. At least I hope mine is number 80,000. P.S. Well, most of those were probably bug reports/closings. -Andrei -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] msession tech note, feature (buglet), call for suggestions.

2002-02-12 Thread Andi Gutmans
At 10:16 PM 2/12/2002 -0500, [EMAIL PROTECTED] wrote: There are a number of ways to deal with this, but creating a socket pool of active sockets, and have a number of threads handle the sockets in a classing queue fashion seems like the best way. Anyone have a better idea? Either do a thread

Re: [PHP-DEV] msession tech note, feature (buglet), call for suggestions.

2002-02-12 Thread Sterling Hughes
At 10:16 PM 2/12/2002 -0500, [EMAIL PROTECTED] wrote: There are a number of ways to deal with this, but creating a socket pool of active sockets, and have a number of threads handle the sockets in a classing queue fashion seems like the best way. Anyone have a better idea? Either do a

Re: [PHP-DEV] msession tech note, feature (buglet), call for suggestions.

2002-02-12 Thread Andi Gutmans
At 06:23 AM 2/13/2002 +0100, Sterling Hughes wrote: At 10:16 PM 2/12/2002 -0500, [EMAIL PROTECTED] wrote: There are a number of ways to deal with this, but creating a socket pool of active sockets, and have a number of threads handle the sockets in a classing queue fashion seems like the

Re: [PHP-DEV] [patch] one script to handle them all

2002-02-12 Thread Markus Fischer
Patches should always be against latest CVS. -- Please always Cc to me when replying to me on the lists. GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php