From f290620ed2ba8f2a6a2b3893c32806f00fa835f7 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Tue, 25 Jul 2006 08:54:47 +0000 Subject: [PATCH] change the docs to conform to the current API git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@217023 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filter/functions/input-get-args.xml | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/reference/filter/functions/input-get-args.xml b/reference/filter/functions/input-get-args.xml index f6b3a1b487..3145713987 100644 --- a/reference/filter/functions/input-get-args.xml +++ b/reference/filter/functions/input-get-args.xml @@ -1,5 +1,5 @@ - + input_get_args @@ -9,8 +9,8 @@ &reftitle.description; mixedinput_get_args - arraydefinition inttype + arraydefinition arraydata &warn.experimental.func; @@ -23,6 +23,17 @@ &reftitle.parameters; + + type + + + One of INPUT_GET, INPUT_POST, + INPUT_COOKIE, INPUT_SERVER, + INPUT_ENV, INPUT_SESSION, or + INPUT_DATA. + + + definition @@ -39,17 +50,6 @@ - - type - - - One of INPUT_GET, INPUT_POST, - INPUT_COOKIE, INPUT_SERVER, - INPUT_ENV, INPUT_SESSION, or - INPUT_DATA. - - - data @@ -106,8 +106,8 @@ $args = array( ); -//$myinputs = input_get_args($args, INPUT_POST); -$myinputs = input_get_args($args, INPUT_DATA, $data); +//$myinputs = input_get_args(INPUT_POST, $args); +$myinputs = input_get_args(INPUT_DATA, $args, $data); var_dump($myinputs); echo "\n";