PHP 中的变量

发布于 2024-09-18 11:15:03 字数 105 浏览 4 评论 0原文

我知道你可以这样做: $hash('foo')$$foo 以及 $bar[$foo],分别是什么这些东西叫什么?

I know you can do: $hash('foo') and $$foo and also $bar[$foo], what are each of these things called?

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

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

发布评论

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

评论(1

蘑菇王子 2024-09-25 11:15:03
  • $hash('foo') 是一个变量函数。
    $hash 可能包含带有函数名称的字符串,或匿名函数。

    $hash = 'md5';
    
    // 这意味着 echo md5('foo');
    // 输出:acbd18db4cc2f85cedef654fccc4a4d8
    回声 $hash('foo');
    
  • $$foo 是一个变量。
    $foo 可能包含带有变量名称的字符串。

    $foo = 'bar';
    $bar = '巴兹';
    
    // 这意味着 echo $bar;
    // 输出:巴兹
    回声 $foo;
    
  • $bar[$foo] 是一个可变数组键。
    $foo 可以包含任何可用作数组键的内容,例如数字索引或关联名称。

    $bar = array('第一' => 'A', '第二' => 'B', '第三' => 'C');
    $foo = '第一个';
    
    // 这告诉 PHP 查找键 'first' 的值
    // 输出:A
    回声 $bar[$foo];
    

PHP 手册有一篇关于 变量 变量 的文章,还有一篇关于匿名函数(但我没有在上面显示后者的示例) 。

  • $hash('foo') is a variable function.
    $hash may contain a string with the function name, or an anonymous function.

    $hash = 'md5';
    
    // This means echo md5('foo');
    // Output: acbd18db4cc2f85cedef654fccc4a4d8
    echo $hash('foo');
    
  • $$foo is a variable variable.
    $foo may contain a string with the variable name.

    $foo = 'bar';
    $bar = 'baz';
    
    // This means echo $bar;
    // Output: baz
    echo $foo;
    
  • $bar[$foo] is a variable array key.
    $foo may contain anything that can be used as an array key, like a numeric index or an associative name.

    $bar = array('first' => 'A', 'second' => 'B', 'third' => 'C');
    $foo = 'first';
    
    // This tells PHP to look for the value of key 'first'
    // Output: A
    echo $bar[$foo];
    

The PHP manual has an article on variable variables, and an article on anonymous functions (but I didn't show an example above for the latter).

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