提问人:Dwarf Vader 提问时间:3/14/2018 最后编辑:Dwarf Vader 更新时间:3/14/2018 访问量:207
在代码中使用 eval(),您将如何避免它?
Using eval() in the code, and how would you avoid it?
问:
在我的代码中,我想尝试获取 $_POST 或 $_GET 变量,并在请求一次后立即取消设置它们。
此函数返回使用的方法,这很简单。不幸的是,我不能简单地直接或通过引用返回 $_POST 或 $_GET 变量,因为我无法取消设置它们(通过引用取消设置不起作用)。因此,我返回变量名称:
class Input {
protected function interface_get($method): string {
switch ($method) {
case 'post':
return '_POST';
break;
case 'get':
return '_GET';
break;
case 'ajax':
// Not supported yet.
return null;
break;
default:
return null; // returns '_GET' or '_POST'
}
}
public function fetch_eval(string $method, ?string $request = null) { // ...fetch('post', 'username')
if ($request !== null) {
$request = '[\'' . $request . '\']'; // "['username']"
}
$request = $this->interface_get($method) . $request; #"$_POST['username']"
eval('$return = $' . $request . ';'); #$return = $_POST['username'];
eval('unset($' . $request . ');'); #unset($_POST['username']);
return $return;
}
public function fetch_varvar(string $method, ?string $request = null) {
$interface = $this->interface_get($method); #$interface = '_POST';
if ($request === null) {
$return = (${$interface});
unset(${$interface});
} else {
$return = ${$interface}; #"Notice: Undefined variable: _POST in [...]"
$return = ${$interface}[$request]; #"Warning: Illegal string offset 'email' in [...]"
unset($interface[$request]);
}
return $result;
}
}
// set $_POST = ['email'=>'spam@me'];
$in = new Input();
echo $in->fetch_eval('post', 'email'); #'spam@me'
// $_POST = [];
// set $_POST = ['email'=>'spam@me']; again
echo $in->fetch_varvar('post', 'email'); #'Notice: Undefined variable: _POST [...]'
有趣的部分是处理输出。这是我的获取函数,我认为是最简单但最肮脏的方法:
我尝试使用变量,它在测试脚本中工作:
// $_POST = [0 => 5, 'bob' => 5];
$e = '_POST';
$var = 'bob';
echo ${$e}[$var]; #5
unset(${$e}[$var]);
echo ${$e}[$var ]; #NOTICE Undefined index: bob on line number 22
// Works as expected.
但它在我的脚本中不起作用(.)。我想也许是因为在课堂上,但无论如何我都无法解决它。更重要的是,如果你把这些函数放在类之外并删除 -es,它们就会起作用!但不是在课堂上。Undefined variable: _POST [...]
$this->
如果有人能告诉我为什么我的后一个代码不起作用,我将不胜感激。但无论如何,你会说使用 eval() 是合理的吗?我知道有些人无论如何都会避免它。显然,在这种情况下,它打开了一个相当大的漏洞,因此与其进行消毒和担心,我宁愿完全避免它。
我想保留为一个单独的功能,但如果需要,我想我也可以在里面复制它。interface_get()
fetch()
提前非常感谢你。
答:
@Syscall和@Ignacio巴斯克斯-艾布拉姆斯在评论中提供了这个问题的答案。
根据 PHP 文档 (https://php.net/manual/en/language.variables.superglobals.php):
超全局变量不能用作函数内部的变量,或者 类方法。
这就是为什么它在班级内不起作用的原因。为了让它工作,我必须像这样使用 $GLOBALS 变量:Input
public function fetch(string $method, ?string $request = null) {
$interface = $this->interface_get($method); #$interface = '_POST';
if ($request === null) {
$return = $GLOBALS[$interface];
unset($GLOBALS[$interface]);
} else {
$return = $GLOBALS[$interface][$request];
unset($GLOBALS[$interface][$request]);
}
return $return;
}
这段代码奏效了。非常感谢您的输入。也许有一种更好或更优雅的方式来实现我正在寻找的东西。在这种情况下,我们始终欢迎进一步的意见。
评论
您可以使用它来获取数据。$GLOBALS[$interface]
但是,假设 和 始终是定义的,您可以检查密钥是否在获取之前定义并取消设置,以避免警告。$_POST
$_GET
public function fetch(string $method, ?string $request = null) {
$interface = $this->interface_get($method); #$interface = '_POST';
if ($request === null) {
$result = $GLOBALS[$interface];
unset($GLOBALS[$interface]);
return $result;
}
if (isset($GLOBALS[$interface][$request])) {
$result = $GLOBALS[$interface][$request];
unset($GLOBALS[$interface][$request]);
return $result;
}
return null;
}
评论
$request
if ($_POST) { unset($_POST); }
if ($_GET) { unset($_GET); }
$GLOBALS[$interface]
${$interface}