@- Added vprintf() and vsprintf() functions that allow passing all arguments

@  after format as an array. (Andrei)
This commit is contained in:
Andrei Zmievski 2001-08-07 19:44:45 +00:00
parent 3d3eff12cb
commit c4555f9f55
3 changed files with 62 additions and 11 deletions

View file

@ -208,6 +208,8 @@ function_entry basic_functions[] = {
PHP_FALIAS(strchr, strstr, NULL)
PHP_NAMED_FE(sprintf, PHP_FN(user_sprintf), NULL)
PHP_NAMED_FE(printf, PHP_FN(user_printf), NULL)
PHP_FE(vprintf, NULL)
PHP_FE(vsprintf, NULL)
PHP_FE(sscanf, third_and_rest_force_ref)
PHP_FE(fscanf, third_and_rest_force_ref)
PHP_FE(parse_url, NULL)