PHP one sentence classic Code classic business solution

Source: Internet
Author: User
PHP one sentence classic Code classic business solution 1. batch random simulation of customer IP addresses in PHP collection
Echo join ('.', array (mt_rand (0,255), mt_rand (0,255), mt_rand (0,255), mt_rand (0,255 )));


2. when Mysql is inserted, one inser inserts big data in batches efficiently.

$ Db-> query ('Insert INTO 'mytable' ('address') VALUES '. join (',', array_map (function ($ ip, $ port) {return '("'. ($ ip. ':'. $ port ). '")';}, $ ipArray [0], $ ipArray [1]). ';'); note that the data format of your $ ipArray is: $ ipArray = array ('127. 0.0.1 ', '2017. 168.1.1 '), array ('80', '123 '));

3. during the collection, do not allow the program to collect the target site too frequently (to prevent the target site from being detected or accessed too frequently). we can take the program rest method:


Usleep (mt_rand (1000,100 0000); // The unit is subtle

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.