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 class_function_entry = {
        {"member_function",PHP_FN(php_member_function), NULL}
        {NULL,NULL, NULL}
};

Thanks,
-Jason


-- 
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]

Reply via email to