PHP method for getting the number of file lines _ PHP Tutorial

Source: Internet
Author: User
PHP to obtain the number of objects. PHP provides two methods to obtain the number of file lines. although the second method is simple and easy to understand, the first method is the best. The first method is 123456789101112131415? Php $ file_path PHP method for getting the number of file lines

Two implementation methods are provided. although the second method is easy to understand, the first method is the best.

First:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

$ File_path = 'xxx.txt '; // file path

$ Line = 0; // Number of initialized rows

// Open the file

$ Fp = fopen ($ file_path, 'r') or die ("open file failure! ");

If ($ fp ){

// Obtain the object content. note: php5 is required to support this function;

While (stream_get_line ($ fp, 8192, "\ n ")){

$ Line ++;

}

Fclose ($ fp); // close the file

}

// Number of output rows;

Echo $ line;

?>

Second:

1

2

3

4

$ Line = count (file ('filename '));

Echo $ line;

?>

The second method is inefficient because you want to save the file content.

Pipeline provides two implementation methods. although the second method is simple and easy to understand, the first method is best: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15? Php $ file_path...

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.