The following is an example of PHP memory_get_usage:
Copy codeThe Code is as follows: echo memory_get_usage (), '<br/>'; // 143952
$ Tmp = str_repeat ('HTTP: // blog.micxp.com/', 4000 );
Echo memory_get_usage (), '<br/>'; // 232048
Unset ($ tmp );
Echo memory_get_usage (); // 143952
The comments behind the above program represent their output (unit: byte (s), that is, the memory used by the PHP script at that time (excluding the memory occupied by the memory_get_usage () function itself)
The preceding example shows that to reduce memory usage, you can use the PHP unset () function to delete unnecessary variables. Similarly, the PHP mysql_free_result () function can be used to clear the result set of a database query that is no longer needed, so that more available memory can be obtained.
PHP memory_get_usage () can also have a parameter $ real_usage with a Boolean value. The default value is FALSE, indicating that the obtained memory usage does not include the memory occupied by this function (PHP Memory Manager). When it is set to TRUE, the obtained memory includes this function (PHP Memory Manager) memory used.
Therefore, in actual programming, you can use PHP memory_get_usage () to compare the memory usage of each method and select the method that occupies a small amount of memory.
Common Detection:
You can use the microtime function to analyze the program execution time.
Memory_get_usage can analyze memory usage
SQL efficiency can be used to open slow queries to view log analysis
Use EXPLAIN to analyze SQL statements with bottlenecks