用 PHP 记录服务
我正在用 PHP 编写一个服务。其他人将使用 HTTP GET 和 POST 访问此服务,它只会返回纯 json。既简单又适合需求。
但是,我希望我在 PHP 中编写的 phpdoc 在他们通过浏览器访问时显示出来(即没有我用来生成结果的 $_GET
变量)。有没有什么东西可以以 phpdoc 的方式解析每个评论并显示结果?
编辑:当然,我意识到我可以只回显一些静态文本,但我专门寻找动态生成的东西,所以我不可能忘记用新的调用或更新文本改变了参数。
I'm writing a service in PHP. Others will access this service with HTTP GETs and POSTs and it will just return plain json. It's simple and suits the needs.
However, I would like the phpdoc I write in the PHP to show up if they visit it via their browser (i.e. without the $_GET
variables I use to generate the result). Is there something that just parses every comment in a phpdoc-ish way and shows the results?
Edit: of course I realize I could just echo some static text, but I'm specifically looking for something that dynamically generates that, so it's not possible for me to forget to update the text with new calls or changed parameters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想到了两个选项:cron 作业或按需 PHPDoc。然后让您的网站在不带任何参数的情况下访问时重定向到文档。
Two options that come to mind: a cron job or on-demand PHPDoc. Then have your site issue a redirect to the documentation when visited without any parameters.