Home Tutorial Php Examples fscanf() example

 
 

fscanf() example
Posted on: July 30, 2009 at 12:00 AM
Here you will learn about fscanf() example.

fscanf() function

function fscanf  is used for parsing the inputs from a file according to a format

Syntax

fscanf(file,format,mixed) 

Parameter

File - File is essential for running this function. There must be at least one file from which it parses the value.

Format - Format is essential. It should be specified.

Mixed is optional. 

Example:

The below example will print the name and profession of the developer. 

Begin the PHP tag.

Open the file using fopen() function.

Run the while loop until, it meets the command. 

Print it and close the file

End the PHP tag.

<?php
$handle = fopen("New Text Document .txt", "r");

while ($userinfo = fscanf($handle, "%s\t%s\n")) 
{
list ($name, $profession ) = $userinfo;
echo $name;
echo "<br>";
echo $profession;
}
fclose($handle);
?>

Related Tags for fscanf() example:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.