gpt4 book ai didi

php - PHP 中的大括号语法?

转载 作者:行者123 更新时间:2023-12-02 00:41:02 28 4
gpt4 key购买 nike

我刚刚在浏览 PHP 文档时发现了 goto 的注释:http://php.net/manual/en/control-structures.goto.php#92763

我的问题是,为什么这有效?

testing: {
process: {
die('Called');
}
}

// Displays 'Called'.
goto process;

// Doesn't work, syntax error
goto testing.process;

这个语法叫什么?它曾经在 PHP 开发中使用过吗?

我似乎找不到任何有关此语法的文档,也找不到任何示例。

任何有关该主题的知识将不胜感激!

最佳答案

goto在文档中,target: 语法没有被称为任何东西,它只是表示 goto 能够跳转到的目标。

花括号本身并不表示任何内容,除了其中的代码属于该目标。如 this comment ,大括号只是让目标语法更清晰。

目标仅与 goto 有关。目标不是(也不可能是)变量,也不是对象。

PHP 中的 . 语法是字符串连接运算符,由于 testingprocess 目标不是字符串,因此会引发错误说 . 是意外的。

由于它们也不是对象,因此您无法转到测试->处理;,因为测试不拥有进程testing 只是一个目标,其中包含另一个process 目标。您可以仅调用 goto testing; 并且 Called 仍将输出。

就像其他人所说的那样,请不要使用goto。这样做弊大于利。

关于php - PHP 中的大括号语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41515169/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com