RE: [PHP-DEV] Itanium2 test from 15.04.-14.05.

2004-05-05 Thread Kai Hofmann
For your information: Until now we found with php / phpGroupWare only one problem on the Itanium 2 machine. phpGW has used mktime() with day values <= 0 This seems to be fixed (magically) by the underlying Unix mktime() function on 32-Bit Linux/Windows Systems, but not on the RedHat Itanium 2 dis

Re: [PHP-DEV] nested includes fails?

2004-05-05 Thread Tumurbaatar S.
Yes, mine works too. After you reply I tested it without abs paths and that worked. May be there was some error in my include scripts because after my 1st post I did many changes in them. Though I wonder what was wrong in my prior code. Thank you all! "Jevon Wright" <[EMAIL PROTECTED]> wrote in me

Re: [PHP-DEV] constant name

2004-05-05 Thread Mehdi Achour
barfoo (c/p error) Jason Garber wrote: Does it output "barfoo" or "bar"? ~Jason At 5/5/2004 10:01 PM +0200, Mehdi Achour wrote: Hi ! The manual reads : "The name of a constant follows the same rules as any label in PHP. A valid constant name starts with a letter or underscore, followed by any numbe

Re: [PHP-DEV] constant name

2004-05-05 Thread Jason Garber
Does it output "barfoo" or "bar"? ~Jason At 5/5/2004 10:01 PM +0200, Mehdi Achour wrote: Hi ! The manual reads : "The name of a constant follows the same rules as any label in PHP. A valid constant name starts with a letter or underscore, followed by any number of letters, numbers, or underscores.

[PHP-DEV] constant name

2004-05-05 Thread Mehdi Achour
Hi ! The manual reads : "The name of a constant follows the same rules as any label in PHP. A valid constant name starts with a letter or underscore, followed by any number of letters, numbers, or underscores. As a regular expression, it would be expressed thusly: '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f

Re: [PHP-DEV] REPOST: building PHP DSO under Cygwin with gcc

2004-05-05 Thread Wez Furlong
I imagine that you need to also build your own apache under cygwin too; beyond that, we can't help you, since we don't support building with cygwin. --Wez. - Original Message - From: "Sven Niemetz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 05, 2004 5:32 PM Subject:

[PHP-DEV] REPOST: building PHP DSO under Cygwin with gcc

2004-05-05 Thread Sven Niemetz
I simply want to build an PHP Apache DSO against the apache src tree. However, it seems that the PHP configure script expects the Apache Win32 binaries to link against. On make, I alwasy run into this error: make libs/libphp4.bundle sapi/apache/mod_php4.o(.text+0x6f): In function `sapi_apache_

[PHP-DEV] Question about recent change to sybase module

2004-05-05 Thread Michael Sims
(Please forgive me if this is not the right forum for this question. This isn't exactly a bug so I didn't feel it was right to open a bug report.) I have a question about a change that was made to ext/sybase/php_sybase_db.c between PHP versions 4.3.3 and 4.3.4. I'm referring specifically to revi

[PHP-DEV] php_curl.dll

2004-05-05 Thread Oostrum van Lucas
Hi, Is there anybody working on adding a few extra curlfuntions to the php_curl.dll? I had a lot of trouble finding out that the CURLOPT_PROXYAUTH, CURLAUTH_NTLM is not supported in the current version of php_curl.dll. I now use shell_exec() to execute the commandprompt curl version. But this o

Re: [PHP-DEV] Reflection API : Feature request and question

2004-05-05 Thread Andi Gutmans
At 09:33 AM 5/5/2004 +0200, Arjen Warendorff wrote: The ReflectionParameter method "allowsNull()" doesn't seem to return anything else then (bool)TRUE ?? Because today this still isn't supported (except for maybe in internal functions). Today all parameters allow NULL :) Andi -- PHP Internals - P

Re: [PHP-DEV] Reflection API : Feature request and question

2004-05-05 Thread Jevon Wright
- Original Message - From: "Arjen Warendorff" <[EMAIL PROTECTED]> To: "'PHP Internals List'" <[EMAIL PROTECTED]> Sent: Wednesday, May 05, 2004 7:33 PM Subject: [PHP-DEV] Reflection API : Feature request and question > Hello, > > I have played around with the Reflection API, missed some f

[PHP-DEV] Reflection API : Feature request and question

2004-05-05 Thread Arjen Warendorff
Hello, I have played around with the Reflection API, missed some features and have some questions: At the moment there is no way of checking if a default parameter has a value, and if so, to get it's value. Example: function foo($bar = TRUE) {} The default value for $bar would be TRUE in this exa