Use a PHP program to directly call the content instance of a text file

Source: Internet
Author: User

How to Use php to directly call the text file content: First, open a text file on the server through the file function, the returned $ myFile will become the handle of the file operation, and then use the circular command, extract and print the content of each row in the file.

Programming Logic

The first function to be used is fi1e. This function is similar to readfile (). in different places, the file function reads all the content in the file, and output to the array variables, each row is a separate array element. Use the file function to open a data.txt file. The content of the data.txt file is:

First line 1

Row 2

Row 3

The statement for opening a file is $ myFile = file ("data.txt"). $ myFile is an array variable.

Then print the content of each element of the array through the loop command loop in the array. Here the count () function is used

Obtains the number of array elements. Print ($ myFile [$ index]. "").

Creation steps

1. Use the file function to open a file

The following is a reference clip:

$ MyFile = file ("data.txt ");

2. loop through the array and print the elements of the array

Here

The following is a reference clip:

At the same time, the elements in the array are printed out.

3. program code

The following is a reference clip:

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.