yuyat/code_path_analyzer

该软件包已被废弃,不再维护。未建议替代软件包。

git remote add origin git@github.com:yuya-takeyama/code_path_analyzer.git

v0.0.1 2012-11-11 08:14 UTC

This package is auto-updated.

Last update: 2022-05-25 16:01:48 UTC


README

使用XDebug分析指定文件的代码路径。

概述

尽可能将以下代码放在您要分析的代码的最前面。

<?php
require_once '/path/to/Yuyat/CodePathAnalyzer/Registrar.php';

Yuyat_CodePathAnalyzer_Registrar::registerDefault(
    array(__FILE__),      // You can specify more files you want to analyze
                          // If you want to analyze all files, just specify null
    '/path/to/save_path', // Analysis result is output here
);

许可证

MIT许可证

作者

Yuya Takeyama