What is the difference between static methods and instance methods in php? Solution
Source: Internet
Author: User
What is the difference between static methods and instance methods in php? There is no difference in the use of methods, but in terms of performance. it should be said that static methods save more memory than instantiation, if it is static, do not call the database and server memory and CPU again. The instance you are talking about is dynamic access. In this case, the database functions are read to generate the corresponding static code. In terms of search engines, static search is helpful, but I feel that the difference is not the difference between static methods in php and instance methods?
There is no difference in usage, but in performance
------ Solution --------------------
Static methods save more memory than instantiation.
------ Solution --------------------
Do not call the database and server memory and CPU again when it is opened statically.
The instance you are talking about is dynamic access. In this case, the database functions are read to generate the corresponding static code.
In terms of search engines, static search is helpful, but the gap is not very large. it can only be said that static generation is recommended for static search.
------ Solution --------------------
Static and faster
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.