什么是“$$”在 PHP 中

发布于 2024-10-01 16:41:07 字数 131 浏览 3 评论 0原文

我看到这段代码,

if (is_null($$textVarName)) {
$$textVarName = $_defaultTexts[$type];
}

代码“$$”是什么?

I saw this code

if (is_null($textVarName)) {
$textVarName = $_defaultTexts[$type];
}

what is code "$$" ?

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

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

发布评论

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

评论(3

じ违心 2024-10-08 16:41:07

邪恶就是这样。

这将获取 $textVarName 中的值并将其用作变量名称。例如:

$foo = 'hello';
$hello = 'The Output';
echo $foo; // displays "The Output"

It's evil is what it is.

That will take the value that's in $textVarName and use that as a variable name. For example:

$foo = 'hello';
$hello = 'The Output';
echo $foo; // displays "The Output"
噩梦成真你也成魔 2024-10-08 16:41:07
foreach($_POST as $key=>$value)$key=$value;

现在,如果以前的表单有一个名为“username”的字段,那么您现在就会自动拥有一个名为 $username 的变量,该变量保存表单中提交的值。
这不是最好的或安全的方法,但是当你的口袋里装满了钉子时,这就是一把锤子,

这是非常糟糕的做法,从不鼓励,但我认识的所有 PHP 程序员都秘密地喜欢它。

foreach($_POST as $key=>$value)$key=$value;

now, automagically, if the previous form had a field named 'username' you now have a variable called $username that holds the value submitted in the form.
not the greatest or secure method, but when you have a pocket full of nails, this is a heck of a hammer

this is pretty bad practice and is never encouraged but all PHP coders I know secretly sorta like it.

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