从函数内部调用函数,变量作用域

发布于 2024-11-04 18:24:59 字数 405 浏览 0 评论 0原文

我只是想确认以下内容不起作用:

function f1(){
  $test = 'hello';
  f2();
}

function f2(){
  global $test;
  echo $test;
}

f1(); //expected result 'hello'

http://php.net /manual/en/language.variables.scope.php

有没有办法像在 Javascript 中那样在作用域链中“流动”?从手册来看,我的选择似乎是全局的或根本没有。

我只是想知道这是否正确。

I just want to confirm that the following will NOT work:

function f1(){
  $test = 'hello';
  f2();
}

function f2(){
  global $test;
  echo $test;
}

f1(); //expected result 'hello'

http://php.net/manual/en/language.variables.scope.php

Is there no way to just "flow" up the scope chain like you can do in Javascript? From the manual, it seems that my option for this is global or nothing at all.

I just wanted to know if that was correct.

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

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

发布评论

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

评论(3

故人的歌 2024-11-11 18:24:59

不会工作。

您可以将变量作为参数传递:

function f1(){
  $test = 'hello';
  f2($test);
}

function f2($string){
  echo $string;
}
f1(); //expected result 'hello'

It won't work.

You can pass the variable as a parameter though :

function f1(){
  $test = 'hello';
  f2($test);
}

function f2($string){
  echo $string;
}
f1(); //expected result 'hello'
一紙繁鸢 2024-11-11 18:24:59

在 f1 中添加 global $test;

function f1(){
    global $test;
    $test = 'hello';
    f2();
}

Add global $test; in f1

function f1(){
    global $test;
    $test = 'hello';
    f2();
}
难以启齿的温柔 2024-11-11 18:24:59

global 指令使本地函数成为顶级全局作用域的一部分。它不会迭代备份函数调用堆栈来查找该名称的变量,它只是跳回绝对顶层,因此如果您完成了:

$test = ''; // this is the $test that `global` would latch on to
function f1() { ... }
function f2() { ... }

基本上,请考虑 global相当于:

$test =& $GLOBALS['test']; // make local $test a reference to the top-level $test var 

The global directive makes a local function part of the top-level global scope. It won't iterate back up the function call stack to find a variable of that name, it just hops right back up to the absolute top level, so if you'd done:

$test = ''; // this is the $test that `global` would latch on to
function f1() { ... }
function f2() { ... }

Basically, consider global to be the equivalent of:

$test =& $GLOBALS['test']; // make local $test a reference to the top-level $test var 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文