gpt4 book ai didi

php - 无法在 __callStatic 中访问 super 全局变量?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:03:43 27 4
gpt4 key购买 nike

以下代码在我安装 PHP 5.3.6-13ubuntu3.2 时失败,这让我想知道为什么我无法在此方法中访问 $_SERVER Super Global。

<?php

header('Content-Type: text/plain');

$method = '_SERVER';
var_dump($$method); // Works fine

class i
{
public static function __callStatic($method, $args)
{
$method = '_SERVER';
var_dump($$method); // Notice: Undefined variable: _SERVER
}
}

i::method();

有人知道这里出了什么问题吗?

最佳答案

如手册中所述:

Note: Variable variables

Superglobals cannot be used as variable variables inside functions or class methods.

( reference )

关于php - 无法在 __callStatic 中访问 super 全局变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8404741/

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