From be19c812aba4ac0893d4b82d4a4fb5152c6ca30e Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Wed, 11 Oct 2000 11:25:13 +0000 Subject: [PATCH] added some missing protos --- ext/standard/basic_functions.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 92354f15af..5338180e88 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -2221,6 +2221,8 @@ PHPAPI PHP_FUNCTION(warn_not_available) } +/* {{{ proto boolean is_uploaded_file(string path) + check if file was created by rfc1867 upload */ PHP_FUNCTION(is_uploaded_file) { zval **path; @@ -2241,8 +2243,11 @@ PHP_FUNCTION(is_uploaded_file) RETURN_FALSE; } } +/* }}} */ +/* {{{ proto boolean move_uploaded_file(string path, string new_path) + move a file if and only if it was created by an upload */ PHP_FUNCTION(move_uploaded_file) { zval **path, **new_path; @@ -2278,6 +2283,7 @@ PHP_FUNCTION(move_uploaded_file) } RETURN_BOOL(successful); } +/* }}} */ /* -- 2.50.1