php search csv form whether there is specified data

Source: Internet
Author: User
Keywords Network programming PHP tutorial
Tags code csv data file it is network network programming php

php tutorials search csv form for the existence of the specified data
// search crap mysterious csv data principle is to open the csv file, and then search for the specified line content is included in the code we read, if it is true.

// Search for the specified content in csv

$ fh = @fopen ("csv_file_name", "r");
if ($ fh) {
if (flock ($ fh, lock_ex)) {
while (! feof ($ fh)) {
$ line = fgets ($ fh);
if (strstr ($ line, $ target_email_address)! == false) {
$ data = split (",", $ line); // $ data * is * an array
}
}
flock ($ fh, lock_un);
}

fclose ($ fh);
}

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.