static ZEND_FUNCTION(trigger_error);
static ZEND_FUNCTION(set_error_handler);
static ZEND_FUNCTION(get_declared_classes);
-static ZEND_FUNCTION(lambda);
+static ZEND_FUNCTION(create_function);
unsigned char first_arg_force_ref[] = { 1, BYREF_FORCE };
unsigned char first_arg_allow_ref[] = { 1, BYREF_ALLOW };
ZEND_FALIAS(user_error, trigger_error, NULL)
ZEND_FE(set_error_handler, NULL)
ZEND_FE(get_declared_classes, NULL)
- ZEND_FE(lambda, NULL)
+ ZEND_FE(create_function, NULL)
{ NULL, NULL, NULL }
};
/* {{{ proto string lambda(string args, string code)
Creates an anonymous function, and returns its name (funny, eh?) */
-ZEND_FUNCTION(lambda)
+ZEND_FUNCTION(create_function)
{
char *eval_code, *function_name;
int eval_code_length, function_name_length;