PHP中打印方法内容

发布于 2024-10-19 01:41:59 字数 146 浏览 1 评论 0原文

protected function _return()
{
   return 'something';
}

如何打印方法的内容?我想将 return 'something'; 作为字符串回显...

protected function _return()
{
   return 'something';
}

How to print content of method? I would like to echo return 'something'; as string...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我们的影子 2024-10-26 01:41:59

您无法从运行代码中获取方法的源代码之类的事情。

你必须作弊

You cannot do such a thing as getting the source-code of a method, from a running-code.

You'll have to cheat :

  • Find out in which PHP file this method is
  • Open that file
  • Parse it
    • using regex or stuff like that might be a way...
    • or you could work with the Tokenizer Functions -- a better way to manipulate PHP code !
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文