尝试使用 QCacheGrind 分析我的代码并且一切正常,但我看不到程序中的源代码。
由于某种原因,源代码路径错误。
现在是cachegrind file location
+php file location
应该只是php file location
尝试使用 QCacheGrind 分析我的代码并且一切正常,但我看不到程序中的源代码。
由于某种原因,源代码路径错误。
现在是cachegrind file location
+php file location
应该只是php file location
这是一个出现在非 linux 文件系统下的 cachegrind 错误。
Cachegrind 将在您的 callgrind 输出文件所在的路径中查找源文件,并附加到您的源文件所在的路径(此路径存储在 callgrind 输出中)。C:/callgrind/C:/Project/src/index.php
您可以通过将 callgrind 输出直接放在源根目录 ( C:/Project/ ) 之外的文件夹中来解决此错误。并在您的 callgrind 输出文件上运行替换以从所有源文件路径中删除您的 callgrind 输出的目录,因此 callgrind 输出将显示您的源文件位于 src/index.php 。
最后,cachegrind 将加入 C:/Project/ 和 src/index.php,您将能够在 cachegrind 中查看您的源代码。