如何检测我的门户网站中的内存泄漏?
我们如何检查网站是否存在内存泄漏?
门户网站中有没有免费的工具可以检查内存泄漏。
我的网站使用 php 和 Mysql 技术。
How do we check there are any memory leaks in a web site?
Are there any tools available for free to check memory leakage in the web portal.
I am using the php and Mysql technologies for the site.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果它是一个使用大量内存的脚本,您可以使用 PHP 的 memory_get_usage () 函数来帮助您调试。
If it's a script that is using a ton of memory, you can use PHP's memory_get_usage() function to help you debug.
您可以使用 PHP 分析工具,例如 xdebug。 (甚至附带 GUI 工具)
此工具提供了一种跟踪所有函数调用的方法,创建变量...等,最重要的是每个阶段/调用的内存使用情况及其所使用的累积内存。
相关问题:PHP内存分析
You can make use of the PHP profiling tools such as xdebug. (even come with GUI tools)
This tools provide a way for to trace all the functions calls, create variables ... etc and most importantly the memory usage for each stages/calls and it's accumulated memory used.
Related question : PHP memory profiling