]> granicus.if.org Git - php/commitdiff
added some missing protos
authorHartmut Holzgraefe <hholzgra@php.net>
Wed, 11 Oct 2000 11:25:13 +0000 (11:25 +0000)
committerHartmut Holzgraefe <hholzgra@php.net>
Wed, 11 Oct 2000 11:25:13 +0000 (11:25 +0000)
ext/standard/basic_functions.c

index 92354f15afaa2094b63c78d0e3066d029ecdc22d..5338180e88dba82028dcab174879ff56bf9b86ac 100644 (file)
@@ -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);
 }
+/* }}} */
 
 
 /*