Php deletes the specified row of the txt file and reads the txt file data by row

Source: Internet
Author: User
This article describes how to delete the specified row of a txt file in php and read the txt file data by row. it involves php's operations on reading and deleting txt files by row, for more information about how to delete a txt file in php and read txt file data by row, see the following example. We will share this with you for your reference. The details are as follows:

Write values to txt files cyclically:

$ Keys = range (1,999); $ file = fopen('key_1101_.txt ', "w"); foreach ($ keys as $ key) {fwrite ($ file, "$ key \ r \ n");} fclose ($ file); $ f1 = fopen('key_11020..txt ', 'r'); while (! Feof ($ f1) {$ line = fgets ($ f1); $ line = trim ($ line); $ arr [] = $ line ;} $ keys = array_filter ($ arr); var_dump ($ keys );

Read txt document data by line:

$ F1 = fopen('key_11020..txt ', 'r'); while (! Feof ($ f1) {$ line = fgets ($ f1); $ line = trim ($ line); $ arr [] = $ line ;} $ keys = array_filter ($ arr); var_dump ($ keys); die;

I hope this article will help you with PHP programming.

For more information about how to delete a txt file from a specified row in php and how to read txt file data by row, refer to PHP Chinese website!

Related Article

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.