加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
doc-generator.php 741 Bytes
一键复制 编辑 原始数据 按行查看 历史
Xiao Yao 提交于 2024-05-25 19:41 . laravel部分代码封装
<?php
require_once __DIR__ . '/src/functions.php';
$readme = file_get_contents(__DIR__ . '/README.md');
$functions = file_get_contents(__DIR__ . '/src/functions.php');
preg_match_all('/function\s+(\w+)\s*\((.*?)\)/', $functions, $matches);
$content = '';
foreach ($matches[1] as $index => $functionName) {
$doc = (new ReflectionFunction($functionName))->getDocComment();
$doc = explode("\n", $doc);
$doc = trim($doc[1], ' *');
$func = $matches[0][$index];
$content .= <<<EOT
// $doc$func
EOT;
}
$content = preg_replace('/\/\/ functions start(.*?)\/\/ functions end/s', "// functions start\n\n$content// functions end", $readme);
file_put_contents(__DIR__ . '/README.md', $content);
echo 'Done.' . PHP_EOL;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化