PHP captures webpage-specific data

Source: Internet
Author: User
PHP captures webpage-specific data. I want to capture webpage: webpage? Thank you. if you need to read this reply, please log on or register CSDN! PHP captures webpage-specific data
I want to capture the specific data of the table gripm2.5on the webpage: http://www.pm2d5.com/city/xg_wangjiao.html,
Is there any efficient way? Thank you ..

------ Solution --------------------
I am stupid, but my regular expression is really bad.
PHP code
// $ Html is the content of www.pm2d5.com/city/xg_wangjiao.html. here, you can write it like pattern = "/[\ s \ S] +? <\/Td>/I "; preg_match_all ($ pattern, $ html, $ tdTag); // var_dump ($ tdTag ); // HTML tag $ deleteStrHeader = ''; $ deleteStrFooter =''; $ pmvalue = array (); foreach ($ tdTag [0] as $ key => $ value) {// if ($ key + 1) % 6 = 0) when traversing to the column pm2.5) {// remove the header and tail HTML tag $ noHeaderStr = str_replace ($ deleteStrHeader, '', $ value); $ cleanStr = str_replace ($ deleteStrFooter,'', $ noHeaderStr ); // Convert to float type $ pmvalue [] = (float) trim ($ cleanStr) ;}} var_dump ($ pmvalue );

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.