PHP development tips for improving performance

Source: Internet
Author: User
PHP development tips for improving performance 1. use commas to connect strings instead of periods

Echo "aaa". "bbb"

Echo "aaa", "bbb ";


2. double quotation marks are used when a string contains a variable.

3. require is faster than require_once

4. calculate the cycle length in advance

 


5. use the foreache loop instead of the while active for loop (execution speed: foreache

6. for file access, use file_get_contents () to read the file. PHP provides four methods to read data from a file: fread (), file_get_contents (), file (), and readfile (). Fread (), file_get_contents (), and readfile () return data in the form of strings. file () returns the data in the file as an array. Only file_get_contents () caches files to the memory for faster read/write operations. this method is called memory ING.

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.