[PHP-DEV] CVS Account Request: ernestyang

2003-02-22 Thread ernest
Maintaining the documentation -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/dba config.m4 dba.c dba_inifile.c php_inifile.h /ext/dba/libinifile .cvsignore inifile.c inifile.h /ext/dba/tests dba_inifile.phpt

2003-02-22 Thread Marcus Börger
At 03:49 23.02.2003, Jani Taskinen wrote: I kinda missed the point of this thing..any real life examples..? :) The "[group]name" format is only to be able to use dba for ini files. The trick is a keyname cannot start with "[", thats all. However i just introduced the native interface, see: ht

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/dba config.m4 dba.cdba_inifile.c php_inifile.h /ext/dba/libinifile .cvsignore inifile.cinifile.h /ext/dba/tests dba_inifile.phpt

2003-02-22 Thread Jani Taskinen
I kinda missed the point of this thing..any real life examples..? :) --Jani On Sat, 22 Feb 2003, Marcus Börger wrote: >At 18:20 22.02.2003, Marcus Boerger wrote: >>helly Sat Feb 22 12:20:06 2003 EDT >> Log: >> @Added dba handler inifiles to support ini files. (Mar

[PHP-DEV] domxml close document routine

2003-02-22 Thread Robert Oldham
Overview: domxml does not include a close document routing to release memory after an xml document has been processed. I have added one. Purpose: I am using PHP's domxml functionality to parse thousands (17,000+) xml documents in a single request. The current implementation of domxml in PHP does

Re: [PHP-DEV] bcpowmod() and bigIntegers

2003-02-22 Thread Sara Golemon
> is there a possibility to implement bcpowmod() in a > version prior than PHP5? > The following patch can be applied to PHP 4.3.0 or PHP 4.3.1. It adds bcpowmod() which isn't scheduled for inclusion until PHP5 and also includes bugfixes and other modifications slated for the PHP4.3.2 release. Us

[PHP-DEV] RFC: dba/inifile native interface

2003-02-22 Thread Marcus Börger
After fixing hopefully last problems in the inifile handler i made up a patch which introduces a native interface to the inifile handler. I did this because the "[group]name" key format is not intuitive. The patch introduces following (self speaking) new functions: int inifile_open(string path, st

Re: [PHP-DEV] [PATCH][NEW FEATURE][HELP NEEDED] Forcing -f via mail() (ext/standard/mail.c)

2003-02-22 Thread Erik Wasser
Daniel Lorch <[EMAIL PROTECTED]> wrote: >> - is it a good idea to 'fake' the '-f' parameter? > This can also be done with php_admin_value in the VirtualHost. No need to > patch PHP if you only want THIS behaviour. I know. B-) But I needed a solution about setting '-f' on per email basis, not on

Re: [PHP-DEV] [PATCH][NEW FEATURE][HELP NEEDED] Forcing -f via mail() (ext/standard/mail.c)

2003-02-22 Thread Erik Wasser
Daniel Lorch <[EMAIL PROTECTED]> wrote: > This has been done several times now. Once by me, once by someone else, > and once by you. The decision was: No. Rationale: PHP should not fix > other applications' bugs. I disagree, but probably there have to be > a couple of more people writing such patc

Re: [PHP-DEV] sending html email from php scripts - please help

2003-02-22 Thread Melvyn Sopacua
On Sat, 22 Feb 2003, Adriaan Nel wrote: AN>>> I would like to send html email from a php script, I know how to basically AN>>> use the mail() function, but it seems to be only able to send text AN>>> emailsdoes any1 know how I can solve this problemif so PLEASE let me AN>>> know about it.

[PHP-DEV] sending html email from php scripts - please help

2003-02-22 Thread Adriaan Nel
Hi all, I would like to send html email from a php script, I know how to basically use the mail() function, but it seems to be only able to send text emailsdoes any1 know how I can solve this problemif so PLEASE let me know about it. Thanks in advance Adriaan Nel -- PHP Development Ma

[PHP-DEV] sending html email from a php script - please help

2003-02-22 Thread Adriaan Nel
Hi all, I am trying to send html email from a php script, I know how to basically use the mail() function, but it seems to be only able to send plain text email. If anyone can help me, please do Thanks in advance Adriaan Nel -- PHP Development Mailing List To un

[PHP-DEV] bindlib_w32 fix for Visual Studio .NET

2003-02-22 Thread Jon Parise
I ran into a problem when building bindlib_w32 using Visual Studio .NEt under Windows XP: nsap_addr.c(38) : error C2491: 'isxdigit' : definition of dllimport function not allowed The attached patch corrects this problem. I don't have commit privileges for the bindlib_w32 module, so if someone c

Re: [PHP-DEV] bcpowmod() and bigIntegers

2003-02-22 Thread Michael Bretterklieber
Hi, Robert Kofler wrote: is there a possibility to implement bcpowmod() in a version prior than PHP5? bcpowmod() ist the only way to calculate a blind signature as described by David CHAUM 1982 -> digicash (openssl does not work here). try this: function bcPowMod($n, $e, $m) { //if ($m == 0

[PHP-DEV] bcpowmod() and bigIntegers

2003-02-22 Thread Robert Kofler
is there a possibility to implement bcpowmod() in a version prior than PHP5? bcpowmod() ist the only way to calculate a blind signature as described by David CHAUM 1982 -> digicash (openssl does not work here). now I use the "shell_exec" command and an external java applet. (btw. java has a grea

Re: [PHP-DEV] [PATCH][NEW FEATURE][HELP NEEDED] Forcing -f via mail() (ext/standard/mail.c)

2003-02-22 Thread Daniel Lorch
hi, > - is it a good idea to 'fake' the '-f' parameter? This can also be done with php_admin_value in the VirtualHost. No need to patch PHP if you only want THIS behaviour. -daniel -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [PATCH][NEW FEATURE][HELP NEEDED] Forcing -f via mail() (ext/standard/mail.c)

2003-02-22 Thread Daniel Lorch
hi, > I don't really know to start. I've made a patch and want to ask for > the offical way to bring this patch into the php engine (if this is > possible). [..] This has been done several times now. Once by me, once by someone else, and once by you. The decision was: No. Rationale: PHP should no

[PHP-DEV] [PATCH][NEW FEATURE][HELP NEEDED] Forcing -f via mail() (ext/standard/mail.c)

2003-02-22 Thread Erik Wasser
I don't really know to start. I've made a patch and want to ask for the offical way to bring this patch into the php engine (if this is possible). I also need some help about the internals of php. At first I will explain some things, why I made the patch. Imagine a big webserver with a few dozen v

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/dba config.m4 dba.c dba_inifile.c php_inifile.h /ext/dba/libinifile .cvsignore inifile.c inifile.h /ext/dba/tests dba_inifile.phpt

2003-02-22 Thread Marcus Börger
Lines before any group line are possible, too. These are identified by the group "[]" for now. Maybe i will change this to "". Skip the last line - i forgot i already did this because it is needed to have the test working :-) marcus -- --

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/dba config.m4 dba.c dba_inifile.c php_inifile.h /ext/dba/libinifile .cvsignore inifile.c inifile.h /ext/dba/tests dba_inifile.phpt

2003-02-22 Thread Marcus Börger
At 18:20 22.02.2003, Marcus Boerger wrote: helly Sat Feb 22 12:20:06 2003 EDT Log: @Added dba handler inifiles to support ini files. (Marcus) If someone wants to test this stuff: The layout of the inifile is: "[" "]" ws* "=" ws* ws* The dba keyformat to use is: [ "[" "]" ] [ ]

[PHP-DEV] BIS : [PHP-DEV] purpose of this mailing list

2003-02-22 Thread Sylvain Becker
Ok, I have written a module for php, (i mean, using zend api) It is interesting to submit it? And whom do I have to ask ? -Message d'origine- De : Andrey Hristov [mailto:[EMAIL PROTECTED] Envoyé : samedi 22 février 2003 17:19 À : Sylvain Becker; [EMAIL PROTECTED] Objet : Re: [PHP-DEV] p

Re: [PHP-DEV] purpose of this mailing list

2003-02-22 Thread Andrey Hristov
Development of PHP (in C/C++), not with PHP. For development with PHP : [EMAIL PROTECTED], [EMAIL PROTECTED] and others. Andrey - Original Message - From: "Sylvain Becker" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 22, 2003 6:12 PM Subject: [PHP-DEV] purpose of t

[PHP-DEV] Release plan of PHP 4.3.2?

2003-02-22 Thread Peter Neuman
Hello, Me a legend when does it know RC's/Final of 4.3.2 gives? because 4.3.0/4.3.1 are buggy. :( Peter Neuman -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] purpose of this mailing list

2003-02-22 Thread Sylvain Becker
Hello. Excuse me for my question: what the goal of this mailinglist: Developement of php-motor? Dev of php-module? Php coding ? Sylvain Becker Sylvain Becker

[PHP-DEV] What about fsize()

2003-02-22 Thread Marcus Börger
What about a new function fsize()? I was thinking about extending filesize but that one is a wrapper around another function which handles stat access based on filenames. fsize() instead would use seekset/tell from our streams stuff. regards marcus -- PHP Development Mailing List

Re: [PHP-DEV] Name of variable

2003-02-22 Thread Ivan Rodriguez
Thx for all, i was trying to do something :-) El sáb, 22-02-2003 a las 15:57, Derick Rethans escribió: > On 22 Feb 2003, Ivan Rodriguez wrote: > > > I need to get the because i doing a simple debugger, and i get the type > > of variable and his information , and i would like to get his name, any

Re: [PHP-DEV] Name of variable

2003-02-22 Thread Derick Rethans
On Sat, 22 Feb 2003, Derick Rethans wrote: > On 22 Feb 2003, Ivan Rodriguez wrote: > > > I need to get the because i doing a simple debugger, and i get the type > > of variable and his information , and i would like to get his name, any > > possible way does not exist?¿ > > It *is* possible, but

[PHP-DEV] PHP 4 Bug Summary Report

2003-02-22 Thread php-dev
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (1058 total including feature requests) ===[*Configuration Issues] 19282 Wont fix Place php4ts.dll into \sapi 20490 Analyzed enable versioning not supported on OSX 2068

Re: [PHP-DEV] Name of variable

2003-02-22 Thread Andi Gutmans
I think xdebug might do it (http://xdebug.derickrethans.nl/) although I've never used it. Andi At 03:56 PM 2/22/2003 +0100, Ivan Rodriguez wrote: I need to get the because i doing a simple debugger, and i get the type of variable and his information , and i would like to get his name, any possibl

Re: [PHP-DEV] Name of variable

2003-02-22 Thread Derick Rethans
On 22 Feb 2003, Ivan Rodriguez wrote: > I need to get the because i doing a simple debugger, and i get the type > of variable and his information , and i would like to get his name, any > possible way does not exist?¿ It *is* possible, but it is not straight forward. But why reinvent the wheel?

Re: [PHP-DEV] Name of variable

2003-02-22 Thread Ivan Rodriguez
I need to get the because i doing a simple debugger, and i get the type of variable and his information , and i would like to get his name, any possible way does not exist?¿ thx El sáb, 22-02-2003 a las 15:42, Andi Gutmans escribió: > You can't get the name of the variable. For what purpose do yo

Re: [PHP-DEV] Name of variable

2003-02-22 Thread Andi Gutmans
You can't get the name of the variable. For what purpose do you need it? Andi At 03:45 PM 2/22/2003 +0100, Ivan Rodriguez wrote: Hello, i need to get the name of the variables who passed in one function, for example: switch ((*struc)->type) { case IS_BOOL:

[PHP-DEV] Name of variable

2003-02-22 Thread Ivan Rodriguez
Hello, i need to get the name of the variables who passed in one function, for example: switch ((*struc)->type) { case IS_BOOL: fprintf(_dyn_log_file_fp, "%sbool:%s\n", COMMON, ((*struc)->value.lval?"true":"false")); break; With

Re: [PHP-DEV] no construct called

2003-02-22 Thread michel 'ziobudda' morelli
Il sab, 2003-02-22 alle 14:57, michel 'ziobudda' morelli ha scritto: > Hi, I have this code: Hi again. In my script I have noticed that if I write: protected $protetta = "Io sono protetta"; the function function ex2() { echo "sono in ex2()\n"; echo "\$Protetta: ".$this->prot

[PHP-DEV] no construct called

2003-02-22 Thread michel 'ziobudda' morelli
Hi, I have this code: \n"; } */ function __construct() { echo "sono in esempio::__construct()\n"; $this->protetta = "I'm protect"; } function exe() { echo "sono in exe()\n"; echo $this->protetta; } } class exe extends esempio {