[PHP-DEV] PHP 4.0 Bug #6927 Updated:

2001-01-21 Thread cynic
ID: 6927 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Suspended Bug Type: Feature/Change Request Assigned To: Comments: you can turn assertions on/off using assert_options() / .ini settings Personally, I would kill for macros, but I don't think we'll see them in

[PHP-DEV] PHP 4.0 Bug #7869 Updated: parse_str produces no trapable value

2001-01-21 Thread cynic
ID: 7869 Updated by: cynic Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Feature/Change Request Assigned To: Comments: have parse_str return would be certainly good; as a workaround you can use parse_str( $s , $a ) ; if( 0 == count( $a ) ) { # problem ... Previous

[PHP-DEV] PHP 4.0 Bug #5350 Updated: call_function(function_name, array args); ala execv()

2001-01-21 Thread cynic
ID: 5350 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Analyzed Status: Closed Bug Type: Feature/Change Request Assigned To: Comments: call_user_func_array() Previous Comments: --- [2000-08-15 10:45:19]

[PHP-DEV] PHP 4.0 Bug #8732 Updated: execution function return always -1

2001-01-21 Thread cynic
ID: 8732 Updated by: cynic Reported By: [EMAIL PROTECTED] Status: Open Old-Bug Type: Unknown/Other Function Bug Type: Program Execution Assigned To: Comments: reclassifying Previous Comments: --- [2001-01-16 04:51:47]

Re: [PHP-DEV] PHP 4.0 Bug #8803 Updated: crazy implementation of printf/sprintf

2001-01-21 Thread Stig Venaas
On Fri, Jan 19, 2001 at 04:24:16PM +0100, Sascha Schumann wrote: Does %.2x work? If not, then it is indeed not in compliance with C99. 7.19.6 says: The comments in ext/standard/formatted_print.c says: * New sprintf implementation for PHP. * * Modifiers: * * " " pad integers

[PHP-DEV] PHP 4.0 Bug #7796 Updated: Slow reqursive functions with MySQL

2001-01-21 Thread cynic
ID: 7796 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: Performance problem Assigned To: Comments: recursion in PHP is pretty fast. could you post a (stripped down as much as possible) script that shows the behavior? Previous Comments:

[PHP-DEV] PHP 4.0 Bug #8760 Updated: Troubles enabling extension php_curl.php

2001-01-21 Thread cynic
ID: 8760 Updated by: cynic Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Feedback Bug Type: *Configuration Issues Assigned To: Comments: are you sure the versions match? (i. e. the dll is from the same package as php.exe you're using?) Previous Comments:

[PHP-DEV] RE: PHP 4.0 Bug #7360 Updated: is_a2z would be nice...

2001-01-21 Thread Maxim Maletsky
Great! Is it documented anywhere yet? (is my name up there as well? I know I haven't done much except bringing this issue up, but I would be on the 7-th sky seeing my name on the PHP change-logs) Cheers, Maxim Maletsky. -Original Message- From: Bug Database [mailto:[EMAIL PROTECTED]]

Re: [PHP-DEV] RE: PHP 4.0 Bug #7360 Updated: is_a2z would be nice...

2001-01-21 Thread Cynic
At 13:55 21.1. 2001, Maxim Maletsky wrote the following: -- Great! Is it documented anywhere yet? (is my name up there as well? I know I haven't done much except bringing this issue up, but I would be on the 7-th sky seeing my name on

[PHP-DEV] PHP 4.0 Bug #8828: mktime using mday=0

2001-01-21 Thread dieter
From: [EMAIL PROTECTED] Operating system: MacOS X (Darwin 1.2) PHP version: 4.0.4pl1 PHP Bug Type: Date/time related Bug description: mktime using mdaylt;=0 On PHP documantation: mktime(hour,min,sec, year,0,mon) refers the last day of month 'mon-1'. On MacOS X this failed,

[PHP-DEV] popen() on Win32

2001-01-21 Thread Andi Gutmans
Hey, A couple of guys here said they are working on creating a popen() alternative solution for Win32. Any progress? Andi -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP-DEV] EXTENSIONS file refresh..

2001-01-21 Thread David Eriksson
On Friday 19 January 2001 16:07, Jani Taskinen wrote: I added some missing extensions into the EXTENSIONS file and some missing EXPERIMENTAL files into the extensions which were marked as experimental. So every author of those extensions should check that the information in EXTENSIONS is

Re: [PHP-DEV] popen() on Win32

2001-01-21 Thread Derick Rethans
Hi, A couple of guys here said they are working on creating a popen() alternative solution for Win32. Any progress? I'm busy with it. I'm making progress indeed. I only have to bring the code into the PHP source now. BUt it looks good. I'll try to finish it this week, but it will be a hack,

[PHP-DEV] RE: [PHP] PHP / NSAPI / Web server support

2001-01-21 Thread Paul Egan
The change from request_translate_uri to rq-vars "path" also fixes the use of PATH_INFO and PHP as a default index. Without this, PHP halts without error on URI's like /app (with /app/index.php) or /script.php/commit. The same problems with PATH_INFO default index occur when running PHP as a

Re: [PHP-DEV] popen() on Win32

2001-01-21 Thread Andi Gutmans
At 05:27 PM 1/21/2001 +0100, Derick Rethans wrote: Hi, A couple of guys here said they are working on creating a popen() alternative solution for Win32. Any progress? I'm busy with it. I'm making progress indeed. I only have to bring the code into the PHP source now. BUt it looks good.

[PHP-DEV] string replacement

2001-01-21 Thread Jan Borsodi
Is there any plans to extend str_replace and ereg_replace to accept arrays in the same manner as preg_replace does? At the moment using preg_replace on arrays are faster than iterating trough the arrays and passing them to str_replace, which is bad. -- - Jan Borsodi [EMAIL PROTECTED] - Systems

Re: [PHP-DEV] string replacement

2001-01-21 Thread Cynic
why is it bad? At 19:45 21.1. 2001, Jan Borsodi wrote the following: -- Is there any plans to extend str_replace and ereg_replace to accept arrays in the same manner as preg_replace does? At the moment using preg_replace on arrays are

[PHP-DEV] emulating db extension on top of dba?

2001-01-21 Thread Jim Winstead
has anyone explored emulating the old db extension on top of the dba extension? because of the better control of which dbm library actually gets used, it seems to me that something like this could make upgrading from php3 easier for some people (like hosting providers, where just upgrading every

Re: [PHP-DEV] string replacement

2001-01-21 Thread Jan Borsodi
Cynic [EMAIL PROTECTED] writes: why is it bad? Why? Because it's quite normal for functions like str_replace to be *much* faster than preg_replace, but since str_replace on arrays is slower (due to iterating over them using PHP code) you have to use preg_replace. I'll happily use preg_replace

Re: [PHP-DEV] PHP 4.0 Bug #8795: Recieved POST-form-data is unexpectedly escaped with backslashes

2001-01-21 Thread Toby Butzon
I may have forgotten to post my apology to the list. Someone already pointed out to me that sending this to the list was stupid, and I sincerely apologize. There's no excuse for what I did and I understand; I'll be more careful. Regards, --Toby - Original Message - From: "Jason

[PHP-DEV] PHP 4.0 Bug #8831: a script works on 2 servers I use, and doesn't work on a third one

2001-01-21 Thread mage
From: [EMAIL PROTECTED] Operating system: Debian Linux PHP version: 4.0.4pl1 PHP Bug Type: MySQL related Bug description: a script works on 2 servers I use, and doesn't work on a third one Dear Support, One of my project were must go to another server, and I got a

[PHP-DEV] Function prototype for PHP4?

2001-01-21 Thread Matthew Hagerty
Greetings, Is there a guide some place for adding functions to PHP4? There seems to be such a mix of old (PHP3) and new (PHP4) methods and it seems that every function I look at for examples seems to do it its own way. The PHP manual only outlines PHP3 functions and does not go into passing

Re: [PHP-DEV] Function prototype for PHP4?

2001-01-21 Thread Matthew Hagerty
I think I posted this to soon, I think I actually found what I am looking for on Zend's site. Sorry for the noise. Matthew At 11:31 PM 1/21/01 -0500, you wrote: Greetings, Is there a guide some place for adding functions to PHP4? There seems to be such a mix of old (PHP3) and new (PHP4)

Re: [PHP-DEV] mcrypt oracle 81

2001-01-21 Thread Derick Rethans
Hello, please provide more information, such as a backtrace and the messages in your error_log (of your webserver). Derick On Mon, 22 Jan 2001, Vinod Panicker wrote: hey.. i'm trying to get PHP 4.0.4pl1 working with mcrypt 2.4.7 and oracle 8i... problem is that everything gets