Re: [PHP-DEV] Jumadi

2003-02-21 Thread [EMAIL PROTECTED]
I think this is not the right group you're posting too. Post your question in the right newsgroup [PHP-WIN], ... Anyway your question is more system-technical. This has nothing to do with PHP. You have to configure your internetaccess server or your router or your internetshare-pc. Check out

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Wez Furlong
Look in the archives for that guys original patch; it allowed doing something like this: $foo = array(); $foo[] = some text; $foo[] = more text; file_put_contents(file.txt, $foo); and also: file_put_contents(file.txt, $foo, $bar, $baz); I'm not 100%

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Sascha Schumann
On Fri, 21 Feb 2003, Jani Taskinen wrote: I object! :) It should be one function with extra parameter to decide the action.. Please put this code into ext/completely_unneeded. - Sascha -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Derick Rethans
On Fri, 21 Feb 2003, Sascha Schumann wrote: On Fri, 21 Feb 2003, Jani Taskinen wrote: I object! :) It should be one function with extra parameter to decide the action.. Please put this code into ext/completely_unneeded. ah, you mean ext/ircg... Derick --

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Sascha Schumann
I'm not 100% sure if we want this feature, but perhaps it is worth revisiting that patch. Alternatively, I would suggest to teach the submitter of that patch regarding fopen, fwrite, implode. He might have overlooked those existing functions. - Sascha -- PHP Development

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Derick Rethans
On Fri, 21 Feb 2003, Sascha Schumann wrote: I'm not 100% sure if we want this feature, but perhaps it is worth revisiting that patch. Alternatively, I would suggest to teach the submitter of that patch regarding fopen, fwrite, implode. He might have overlooked those existing

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Sascha Schumann
On Fri, 21 Feb 2003, Derick Rethans wrote: On Fri, 21 Feb 2003, Sascha Schumann wrote: I'm not 100% sure if we want this feature, but perhaps it is worth revisiting that patch. Alternatively, I would suggest to teach the submitter of that patch regarding fopen, fwrite,

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Derick Rethans
On Fri, 21 Feb 2003, Sascha Schumann wrote: I think a counterpart for file_get_contents in the form of a plain file_put_contents would be welcome. Don't tell me that ?php file_write_content('foobar.txt', 'foo!', file_exists('foobar.txt')); I meant a *plain* file_put_contents:

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Sascha Schumann
I meant a *plain* file_put_contents: That must be one of the most useless function proposals I've seen so far. Now, if the function could atomically replace file contents, then it would be something entirely different. But a simple wrapper for a two-line fopen/fputs? Get

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Hartmut Holzgraefe
Sascha Schumann wrote: But a simple wrapper for a two-line fopen/fputs? Get real. you forgot the fclose() ;) -- Six Offene Systeme GmbH http://www.six.de/ i.A. Hartmut Holzgraefe Email: [EMAIL PROTECTED] Tel.: +49-711-99091-77 Sie finden uns auf der CeBIT in Halle 6/H44

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Dirkjan Ochtman
That's like one of those functions I've written myself and have to include in about every project I write... I think it's a Good Thing. Regards, Dirkjan Ochtman Sascha Schumann [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I meant a *plain*

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Sascha Schumann
n Fri, 21 Feb 2003, Dirkjan Ochtman wrote: That's like one of those functions I've written myself and have to include in about every project I write... I think it's a Good Thing. Well, I fully understand that. I just disagree with the idea that this utility function should become

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Markus Fischer
On Fri, Feb 21, 2003 at 03:04:27AM +0200, Jani Taskinen wrote : On Thu, 20 Feb 2003, Sara Golemon wrote: I recall a discussion sometime back about making file_put_contents() (create a file and write the provided contents to it in one command) and file_add_contents() (like put but append

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Ilia A.
On February 21, 2003 04:54 am, Wez Furlong wrote: Look in the archives for that guys original patch; it allowed doing something like this: $foo = array(); $foo[] = some text; $foo[] = more text; file_put_contents(file.txt, $foo); and also:

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Ilia A.
On February 21, 2003 05:00 am, Sascha Schumann wrote: Alternatively, I would suggest to teach the submitter of that patch regarding fopen, fwrite, implode. He might have overlooked those existing functions. That's what I like about PHP, you learn about new functions every single

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Sascha Schumann
implode) and fclose. However, IMO this wrapper is very useful since it simplifies commonly used code a great deal and even makes it slightly faster since the wrapper is in C rather then in PHP. Oh, come on. Put it into a utility library; this does not belong into the core of PHP. Or

[PHP-DEV] Patches for 4_3 COM Memory Leaks

2003-02-21 Thread Michael Sisolak
The recent fixes to the COM extension (for the 4_3 branch) have helped with a lot of the memory leaking that was occuring. Working with the latest snapshot I've done some additional work to clean up the few remaining leaks I am seeing in my COM calls. I believe that the two patches below

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Derick Rethans
On Fri, 21 Feb 2003, Sascha Schumann wrote: implode) and fclose. However, IMO this wrapper is very useful since it simplifies commonly used code a great deal and even makes it slightly faster since the wrapper is in C rather then in PHP. Oh, come on. Put it into a utility library;

[PHP-DEV] Two ZE2 problems

2003-02-21 Thread Sander Roobol
I recently discovered two problems in ZE2 that break BC. The following snippet works fine on ZE1, but gives Fatal error: Class 'foo' not found on ZE2. Classes apparently need to be defined before they can be used. $bar = new foo(); class foo {} Although it's easy to work around this

[PHP-DEV] CVS Account Request: retnug

2003-02-21 Thread Claudio Gaetani
Contribute with the documentation of PHP Manual, Translations and MacOS X Generations of Help PHP Manual, in italian and Engliash -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] file_put_contents() / file_add_contents() ?

2003-02-21 Thread Ilia A.
On February 21, 2003 09:38 am, Sascha Schumann wrote: implode) and fclose. However, IMO this wrapper is very useful since it simplifies commonly used code a great deal and even makes it slightly faster since the wrapper is in C rather then in PHP. Oh, come on. Put it into a utility

[PHP-DEV] Help with SAPI and INI

2003-02-21 Thread Justin Erenkrantz
Hello all, Pardon my cluelessness, but I'm trying to teach the apache2* SAPI's about PHP's xbithack setting per the following bug (which Jani has pointed me at): http://bugs.php.net/bug.php?id=22321 I believe I have the logic for that bug corrected in my tree. (As an aside, this particular

Re: [PHP-DEV] Announcement: Next generation ext_skel

2003-02-21 Thread Andi Gutmans
It'd be nice to see an example of the XML. I liked the simplicity of today's prototype file, I'm not sure XML isn't an overkill. Andi At 11:24 AM 2/19/2003 +0100, Hartmut Holzgraefe wrote: i've just added the first working results of a replacement for the good old ext_skel script in

[PHP-DEV] URGENT

2003-02-21 Thread EKI OMORODION
MRS. EKI OMORODION # 8 Queens Drive Ikoyi Lagos. Email:[EMAIL PROTECTED] INTRODUCTION: l am Mrs. Eki Omorodion l know this proposal will come to you as a surprise because we have not met before either physically or through correspondence. I have no doubt in your ability to handle this proposal

[PHP-DEV] URGENT - Can anyone say 4.0.9? Geesh...

2003-02-21 Thread Louwtjie
even developers lists aren't safe from snail-trail scammers! Grrr... Louwtjie Taljaard _ Services: * IT Security Consulting * Systems Management * Systems Administration * HP / IBM / Sun / SGI / Cisco Operations * Software Web Presence Development _ Looking for love in

[PHP-DEV] CVS Account Request: damian

2003-02-21 Thread Damian Alejandro Fernandez Sosa
Develop the PEAR's Net_IMAP package -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: kidcn

2003-02-21 Thread adolf china
good -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php