[PHP-DEV] ZEND_MODULE_API_NO in HEAD

2002-06-14 Thread Stefan Livieratos
Hi, the ZEND_MODULE_API_NO (zend_modules.h) is different in the php_4_2_1 and the HEAD branches. Is that supposed to be so? Regards Stefan Livieratos -- ICS Plus Internet Consulting + Services == Aeussere Brucker Str. 51 D-91052 Erlangen Germany

Re: [PHP-DEV] The PHP Platform

2002-04-17 Thread Stefan Livieratos
e >it rarely ever happens. even if it does, you > have go through it all over again if you switch hosts) You obviously cannot make the language responsible for the decisions of hosting provider system administrators. Regards, Stefan Livieratos -- ICS Plus Internet Consulting + Services

Re: [PHP-DEV] The PHP Platform

2002-04-16 Thread Stefan Livieratos
nce I see featurewise is that MSXML offers XML Schema validation which is not yet supported by domxml (libxml2). Regards, Stefan Livieratos -- ICS Plus Internet Consulting + Services == Aeussere Brucker Str. 51 D-91058 Erlangen Germany =

Re: [PHP-DEV] call_user_*()

2001-05-13 Thread Stefan Livieratos
l_user_func' can be also called like this: call_user_func($function_name, array($arg1, arg2, arg3)); Where's the difference between call_user_func and call_user_func_array? Regards, Stefan Livieratos -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DEV] call_user_*()

2001-05-12 Thread Stefan Livieratos
his way. What good is it anyway? I suggest 'call_user_func_array' should be removed as it is not needed and also doesn't work with user functions that expect arguments by reference. This script fails: Regards, Stefan Livieratos -- PHP Development Mailing List <http://www.ph

Re: [PHP-DEV] builtin functions / constructs

2001-03-23 Thread Stefan Livieratos
"Hartmut Holzgraefe" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Stefan Livieratos wrote: > > > > Hi, > > > > "Cynic" <[EMAIL PROTECTED]> schrieb im Newsbeitrag > > [EMAIL P

Re: [PHP-DEV] builtin functions / constructs

2001-03-23 Thread Stefan Livieratos
script can know if e. g. zend_version() is available > (other than function_exists( 'zend_version' ), that is). > Is something along get_builtin_constructs() possible? Take a look at get_defined_functions(), http://www.php.net/manual/en/function.get-defined-functions.php . Regards,