如何在不构建全局变量的情况下访问函数内部的变量?

发布于 2024-12-03 02:24:04 字数 585 浏览 0 评论 0原文

<?php
declare(ticks=1);
function tick_handler()
{
print($GLOBALS['a']);
}
register_tick_function('tick_handler');


function test()
{
$a = 1;//This not print
$a = 2;//This not print
$a = 3;//This not print
$a = 4;//This not print
}
test();
$a = 1;//This print
$a = 2;//This print
$a = 3;//This print
$a = 4;//This print
?>

如何打印 //这不是打印,而是没有全局 $a ?

并且没有

function test()
{
$GLOBALS['a'] = 1;//This not print
$GLOBALS['a'] = 2;//This not print
$GLOBALS['a'] = 3;//This not print
$GLOBALS['a'] = 4;//This not print
}
<?php
declare(ticks=1);
function tick_handler()
{
print($GLOBALS['a']);
}
register_tick_function('tick_handler');


function test()
{
$a = 1;//This not print
$a = 2;//This not print
$a = 3;//This not print
$a = 4;//This not print
}
test();
$a = 1;//This print
$a = 2;//This print
$a = 3;//This print
$a = 4;//This print
?>

How print //This not print ,but without global $a ?

And without

function test()
{
$GLOBALS['a'] = 1;//This not print
$GLOBALS['a'] = 2;//This not print
$GLOBALS['a'] = 3;//This not print
$GLOBALS['a'] = 4;//This not print
}

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

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

发布评论

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

评论(1

橘亓 2024-12-10 02:24:04

我不是 100% 确定你想做什么,但是

例如,在 Joomla 中,要更改页面底部规定的标签,请执行以下操作: 1) 您必须下载托管转储脚本 2) 找到位于 3) 旁边的一段 html 脚本代码函数4)找到一个地方html代码教育我花了几个小时才在$globals和register_tick_function的帮助下找到

听起来像

如果您需要调试应用程序和/或需要查看以什么顺序和使用什么参数调用哪些函数和方法,请使用适当的调试器:

请参阅https://stackoverflow.com/questions/1494288/good-free-php-debugger

非常感谢,但是 hostmonster.com 中的 xdebug 被禁用

不想想要调试您的生产站点。如果您需要添加更多功能或应用更改,请先在开发服务器上执行此操作。确保它有效,然后将更改部署到您的生产站点。因此,要么将 XDebug 放在本地计算机上,要么放入虚拟机或类似的东西中。或者为您的开发环境寻找一个新的托管服务商。无论如何,将其放置在开发和调试不会中断生产的地方。

I am not 100% sure what you are trying to do but

For example, in Joomla to change the label prescribed bottom of the page bottom of page for this 1) You must download hosting dump script 2) Find a piece of html script code that is next to 3) To investigate the behavior of functions 4) Find a place html code education It takes a couple of hours I just find with the help of $globals and register_tick_function

sounds like .

If you need to debug your application and/or need to see which functions and methods got called in what order and with what parameters, then use a proper debugger:

See https://stackoverflow.com/questions/1494288/good-free-php-debugger

Big Thanks, but xdebug in hostmonster.com disabled

You do not want to debug your production site. If you need to add more features or apply changes, do so on your development server first. Make sure it works, then deploy the changes to your production site. So either put XDebug on your local machine or into a VM or anything like that. Or get a new hoster for your development environment. In any case, put it where development and debugging wont disrupt production.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文