如何检测我的门户网站中的内存泄漏?

发布于 2024-10-09 03:36:50 字数 86 浏览 2 评论 0原文

我们如何检查网站是否存在内存泄漏?

门户网站中有没有免费的工具可以检查内存泄漏。

我的网站使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅气称霸 2024-10-16 03:36:50

如果它是一个使用大量内存的脚本,您可以使用 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.

芯好空 2024-10-16 03:36:50

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文