PHP static Variable Understanding----(add static keyword before variable)

Source: Internet
Author: User

In addition to the use of regular classes and methods in PHP, access control, static keywords, static variables can be local variables can also be global variables, when a program segment is completed, the static variable does not disappear, it still exists in memory, the next time the definition or the previous value , often used in recursive or sub-function to retain the previous value, can be used to define variables and methods, the role is not specific to say, the use of the way, the following simple code:

1<?PHP2 functionAdd$i){3     Static $sum= 0;4     if($i<=100){5         $sum=$sum+$i;6Add$i+1);7     }8     Echo $sum; die;9 }TenAdd (1);

Effect

PHP static Variable Understanding----(add static keyword before variable)

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.