[PHP-DEV] whats the standard for OO builtin_functions?

2001-03-12 Thread Jason Greene
Can anyone tell me what the standard is for the builtin_functions function_entry in OO, should i use a or b A) static function_entry class_function_entry = { PHP_FALIAS(member_fnction, php_member_function, NULL) {NULL, NULL,NULL} }; B) static function_entry

Re: [PHP-DEV] whats the standard for OO builtin_functions?

2001-03-12 Thread Andi Gutmans
If it's not an alias I think you probably want PHP_FE(member_function, NULL) and use PHP_FUNCTION(member_function) in the function decleration. Andi At 12:06 PM 3/12/2001 -0600, Jason Greene wrote: Can anyone tell me what the standard is for the builtin_functions function_entry in OO, should