Re: [PHP-DEV] Problem updating CVS HEAD

2005-08-05 Thread Pasha Zubkov
Andrey Hristov wrote: > Because CVS works and ppl are so far happy with it > > Andrey > CVS don't always work properly. This example shows it ;) Also SVN has better versioning control mechanism. Hope sometime in the future php will "update" to SVN, so why not now? -- PHP Internals - PHP Runtim

Re: [PHP-DEV] Problem updating CVS HEAD

2005-08-05 Thread Derick Rethans
On Fri, 5 Aug 2005, Pasha Zubkov wrote: > CVS don't always work properly. This example shows it ;) Also SVN has > better versioning control mechanism. Hope sometime in the future php > will "update" to SVN, so why not now? SVN has other annoyances. We will not move anytime soon. (period) Derick

Re: [PHP-DEV] Problem updating CVS HEAD

2005-08-05 Thread Jani Taskinen
On Fri, 5 Aug 2005, Pasha Zubkov wrote: Andrey Hristov wrote: Because CVS works and ppl are so far happy with it Andrey CVS don't always work properly. This example shows it ;) Also SVN has It works fine as long as you don't try to outsmart it. better versioning control mechanism. H

[PHP-DEV] Re: [PHP] Exceptions: function x throws Exception

2005-08-05 Thread Jochem Maas
Dear Internals, class FooBar { public function foo() throws Exception {} } function fooFoo() throws Exception {} this came up on php-generals and I wondered if anyone had time/cared to comment if it (as it does to me) seems like a good idea and/or whether it is technically feasable. My t

[PHP-DEV] Any reasons for not making exif and sockets extensions dynamically loadable.

2005-08-05 Thread Kamesh Jayachandran
Hi All, I could not build exif and sockets extension as a shared extension(Our php set up is like windows PHPTS). With the current config.m4 I get link failure stating that php5lib not found. PHP_SUBST(SOCKETS_SHARED_LIBADD) PHP_SUBST(EXIF_SHARED_LIBADD) in the corresponging config.m4 files would

[PHP-DEV] Questions on stream

2005-08-05 Thread Rob Richards
I was wondering if the following are bugs or expected behavior/wont change. Take the following code: Under linux the file is deleted and the result is Wrote Data (even though the last fwrite didnt do anything). Under windows, the unlink() call results in a permissions denied error. Shouldn't

[PHP-DEV] RC1

2005-08-05 Thread Andi Gutmans
Hi all, Another reminder, I'd like to roll RC1 on Monday. Everyone will be back from OSCON and we can start the Unicode merge right afterwards. Andi -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Any reasons for not making exif and sockets extensions dynamically loadable.

2005-08-05 Thread Jani Taskinen
On Fri, 5 Aug 2005, Kamesh Jayachandran wrote: Hi All, I could not build exif and sockets extension as a shared extension(Our php set up is like windows PHPTS). With the current config.m4 I get link failure stating that php5lib not found. PHP_SUBST(SOCKETS_SHARED_LIBADD) PHP_SUBST(EXIF_SHARED_

Re: [PHP-DEV] Questions on stream

2005-08-05 Thread Antony Dovgal
On Fri, 05 Aug 2005 16:48:21 -0400 Rob Richards <[EMAIL PROTECTED]> wrote: > I was wondering if the following are bugs or expected behavior/wont change. > > Take the following code: > $handle = fopen("file.txt", "w"); > fwrite($handle, "SOME DATA"); > unlink("file.txt"); > if (fwrite($handle, "S

Re: [PHP-DEV] Questions on stream

2005-08-05 Thread Rob Richards
Antony Dovgal wrote: Shouldn't linux not allow the file to be deleted with an open stream as well? No, why? Dunno, kind of the reason I was asking. Just doesn't seem right that you can be writing to a file, it gets deleted and you have no idea it was deleted seeing that it tells you i

Re: [PHP-DEV] Questions on stream

2005-08-05 Thread Wez Furlong
On 8/5/05, Antony Dovgal <[EMAIL PROTECTED]> wrote: > Yup =) Also on Windows you can't open a file already opened by someone. Actually, you can if the person that opened it says you can, it's just that it's not the default mode for the file. --Wez. -- PHP Internals - PHP Runtime Development Mail