From c36889d73831dec00eb2730118157cad8d07d1a3 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 27 Jul 2004 13:31:59 +0000 Subject: [PATCH] Next parameters are passed by reference, they are mixed git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@164448 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/fscanf.xml | 4 ++-- reference/strings/functions/sscanf.xml | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/reference/filesystem/functions/fscanf.xml b/reference/filesystem/functions/fscanf.xml index 594c4194b7..c0e15dd7b4 100644 --- a/reference/filesystem/functions/fscanf.xml +++ b/reference/filesystem/functions/fscanf.xml @@ -1,5 +1,5 @@ - + @@ -12,7 +12,7 @@ mixedfscanf resourcehandle stringformat - stringvar1 + mixed& ... The function fscanf is similar to diff --git a/reference/strings/functions/sscanf.xml b/reference/strings/functions/sscanf.xml index a6715b810e..34ec373784 100644 --- a/reference/strings/functions/sscanf.xml +++ b/reference/strings/functions/sscanf.xml @@ -1,5 +1,5 @@ - + @@ -14,7 +14,7 @@ mixedsscanf stringstr stringformat - stringvar1 + mixed& ... The function sscanf is the input analog of @@ -22,7 +22,9 @@ from the string str and interprets it according to the specified format. If only two parameters were passed to this function, the values parsed - will be returned as an array. + will be returned as an array. Otherwise, if optional parameters are passed, + the function will return the number of assigned values. The optional + parameters must be passed by reference. Any whitespace in the format string matches any whitespace in the input