[PHP-DEV] zend_object_handlers.h

2003-09-30 Thread Frank M. Kromann
Hi, This is a patch for ZendEngine2 that will allow the use of object handlers in shared objects (PHP-GTK2). Would is be possible to get this change committed ? - Frank cvs diff -u zend_object_handlers.h (in directory C:\PHP\php5\Zend\) Index: zend_object_handlers.h

[PHP-DEV] CVS Account Request: mujecks

2003-09-30 Thread mujecks
how to use it and how to create it -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] class constants bugs

2003-09-30 Thread Cristiano Duarte
"Derick Rethans" <[EMAIL PROTECTED]> escreveu na mensagem news:[EMAIL PROTECTED] > On Mon, 29 Sep 2003, Cristiano Duarte wrote: > > > Shouldn't class constants support simple expressions ? > > No. So It's a compiler bug if it not complaining abount contant expressions... P.S.: I remember that on t

Re: [PHP-DEV] filepaths, uris, safemode, etc..

2003-09-30 Thread Rob Richards
From: Wez Furlong > > You'll probably want to check if the path is a URI or local path first; > the > > streams code checks for :// to make this decision. I loaded the soap extension and now run into an issue (though streams now work in dom without having to touch it). xmlRegisterInputCallbacks i

Re: [PHP-DEV] file_exists and array_merge_clobber

2003-09-30 Thread Justin Hannus
Aahh, I didn't see that in your original message :) "Lukas Smith" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > From: Justin Hannus [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, September 30, 2003 8:12 PM > > > > I agree with Wez, what if you are searching for a file with a relat

RE: [PHP-DEV] file_exists and array_merge_clobber

2003-09-30 Thread Lukas Smith
> From: Justin Hannus [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 30, 2003 8:12 PM > > I agree with Wez, what if you are searching for a file with a relative > file > path, e.g: > > if (file_exists("somefile.php")) > // ... > > would return true if "somefile.php" is not in the current

[PHP-DEV] filepaths, uris, safemode, etc..

2003-09-30 Thread Wez Furlong
Sorry about the forwarding... had a little hiccup with my mail server... - Original Message - From: "Wez Furlong" <[EMAIL PROTECTED]> To: "Rob Richards" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, September 30, 2003 7:10 PM Subject: Re: [PHP-DEV] filepaths, uris, safemode, etc

Re: [PHP-DEV] file_exists and array_merge_clobber

2003-09-30 Thread Justin Hannus
I agree with Wez, what if you are searching for a file with a relative file path, e.g: wrote in message news:[EMAIL PROTECTED] > Using the include path for file_exists doesn't sound useful to me, for > similar reasons as those for not allowing to write a file in the include > path - which file ar

Re: [PHP-DEV] differences in the RDBMS ext API's

2003-09-30 Thread Georg Richter
Hi Lukas, good job! > - bind .. > mysqli_bind_param and mysqli_bind_result > - errno/error mysqli supports 2 types of errno/error mysqli_errno/error and mysqli_sqlstate. mysqli_sqlstate returns ANSI/ODBC conform errorcodes. > - next_result > only exists in fbsql and mssql on todo for my

Re: [PHP-DEV] MonetDB extension

2003-09-30 Thread Manfred Stienstra
> I see something bad in php_monet.h : > > PHP_FUNCTION(mysql_connect); > PHP_FUNCTION(mysql_close); > > As you probably see this you misspelled the names. Oops, sorry to have bothered you with this... Manfred -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: htt

Re: [PHP-DEV] MonetDB extension

2003-09-30 Thread Andrey Hristov
Manfred Stienstra wrote: On Tue, 2003-09-30 at 16:56, Andrey Hristov wrote: Manfred Stienstra wrote: Hi, As some might remember from last week, I'm trying to develop a php extension, but I'm having a little trouble getting it compiled... /home/dwerg/code/2003/monetdb/php-4.3.3/ext/monet/

Re: [PHP-DEV] MonetDB extension

2003-09-30 Thread Manfred Stienstra
On Tue, 2003-09-30 at 16:56, Andrey Hristov wrote: > Manfred Stienstra wrote: > > >Hi, > > > >As some might remember from last week, I'm trying to develop a php > >extension, but I'm having a little trouble getting it compiled... > > > >/home/dwerg/code/2003/monetdb/php-4.3.3/ext/monet/monet.c:42:

Re: [PHP-DEV] MonetDB extension

2003-09-30 Thread Andrey Hristov
Manfred Stienstra wrote: Hi, As some might remember from last week, I'm trying to develop a php extension, but I'm having a little trouble getting it compiled... /home/dwerg/code/2003/monetdb/php-4.3.3/ext/monet/monet.c:42: error: `zif_monet_connect' undeclared here (not in a function) /home/dwer

Re: [PHP-DEV] MonetDB extension

2003-09-30 Thread Manfred Stienstra
Hi, As some might remember from last week, I'm trying to develop a php extension, but I'm having a little trouble getting it compiled... /home/dwerg/code/2003/monetdb/php-4.3.3/ext/monet/monet.c:42: error: `zif_monet_connect' undeclared here (not in a function) /home/dwerg/code/2003/monetdb/php-4

[PHP-DEV] ZEND_DISABLE_MEMORY_CACHE=0 problematic on large arrays

2003-09-30 Thread Alan Knowles
http://cvs.php.net/diff.php/ZendEngine2/zend_alloc.c?r1=1.118&r2=1.119&ty=h&num=10 " - Add heap to memory manager. This should improve performance. - Enabling it by default so that it gets tested. We should decide before beta 2 if we want to revert back to malloc or not." Well, it's got some testi

[PHP-DEV] filepaths, uris, safemode, etc..

2003-09-30 Thread Rob Richards
Within the dom extension, I am trying to resolve an issue with uris and local filepaths which are passed to libxml. When I get the filepath, I need to resolve any local filepaths to an absoulte path. On top of this the safemode checks need to be done before passing any of these to libxml. So far

RE: [PHP-DEV] file_exists and array_merge_clobber

2003-09-30 Thread Lukas Smith
> From: Wez Furlong [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 30, 2003 12:58 PM > Using the include path for file_exists doesn't sound useful to me, for > similar reasons as those for not allowing to write a file in the include > path - which file are you actually writing to? What if

Re: [PHP-DEV] file_exists and array_merge_clobber

2003-09-30 Thread Wez Furlong
Using the include path for file_exists doesn't sound useful to me, for similar reasons as those for not allowing to write a file in the include path - which file are you actually writing to? What if someone puts a file with the same name earlier in the include path and so on. What is probably bet

[PHP-DEV] file_exists and array_merge_clobber

2003-09-30 Thread Lukas Smith
Hi, We have a new intern who got right to work to improve file_exists() to also be able to check the include_path similar to how fopen() can. We have a patch here. Due to some issues on the CVS version of ext/standard/filestat.c in HEAD we commented out some code in the file in order to be able t

Re: [PHP-DEV] class constants bugs

2003-09-30 Thread Derick Rethans
On Mon, 29 Sep 2003, Cristiano Duarte wrote: > Shouldn't class constants support simple expressions ? No. Derick -- "Interpreting what the GPL actually means is a job best left to those that read the future by examining animal entrails."