读取函数的变量
我有一个包含一些代码的函数,但不允许我触摸它(即:添加更多代码)。 PHP 有没有办法获取该函数中定义的变量?
谢谢你的帮助...
好吧,我不是很清楚。这就是我正在尝试做的事情。
$hello(function() {
$a = "this is a variable!";
});
我希望这段代码能够提供一个文件(一个视图),能够读取变量 $a。
我最近尝试使用 php 的反射并找到了一种提取静态变量的方法......不认为有一种方法可以处理所有其他变量,但我会继续搜索。
$obj = new ReflectionFunction($my_closure);
print_r($obj->getStaticVariables());
I have a function with some code in it, but I'm not allowed to touch it (ie: add more code). Is there a way in PHP to get variables defined in that function?
Thank you for helping...
Ok, I've not been very clear. Here's what I'm trying to do.
$hello(function() {
$a = "this is a variable!";
});
I want this code to serve a file (a view), capable of reading variable $a.
I've recently tried playing around with php's reflection and found a way to extract static variables.... don't think there's a way for all other variables, but I'll keep searching.
$obj = new ReflectionFunction($my_closure);
print_r($obj->getStaticVariables());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
函数中定义的变量仅在函数范围内可见,因此与站点上的任何其他代码无关。
Variables defined in the function will only be visible within the scope of the function and so have no relevance to any other code on your site.