Read file content

Source: Internet
Author: User
HTMLHEADTITLE reads file content/TITLE/HEADBODY? // Print each ifif($myfilefopen(data.txt, r) of the file at the same time when the file is opened) {while (! Feof ($ myFile) {$ myCharacterfgetc ($ myFile); print ($ myCharacter);} fclose ($

Read file content


// Open the file and print every character of the file
If ($ myFile = fopen ("data.txt", "r "))
{
While (! Feof ($ myFile ))
{
$ MyCharacter = fgetc ($ myFile );
Print ($ myCharacter );
}
Fclose ($ myFile );
}
?>

// Print each row of the file while opening the file
If ($ myFile = fopen ("data.txt", "r "))
{
While (! Feof ($ myFile ))
{
$ MyLine = fgets ($ myFile, 255 );
Print ($ myLine );
}
Fclose ($ myFile );
}
?>

/* Open the file and print each row of the file,
Remove the HTML language from the retrieved string.
*/
If ($ myFile = fopen ("data.txt", "r "))
{
While (! Feof ($ myFile ))
{
$ MyLine = fgetss ($ myFile, 255 );
Print ($ myLine );
}
Fclose ($ myFile );
}
?>



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.