PHP and variable variables ($$) syntax

2019-08-27 11:49发布

Before upgrading to PHP 7, I had this code and it returned true

var_dump(isset($$_SESSION['payment']) );
var_dump(is_object($$_SESSION['payment'])); 
var_dump($_SESSION['payment']); // string 'moneyorder'

After upgrading to PHP 7, I rewrote the same code inside a class, but now it returns false

var_dump(isset(${$_SESSION['payment']})); 
var_dump(is_object(${$_SESSION['payment']}));
var_dump($_SESSION['payment']); // string 'moneyorder'

Do you have an idea why ?

Thank you

1条回答
Animai°情兽
2楼-- · 2019-08-27 12:47

Note the PHP documentation for superglobals contains this warning:

Note: Variable variables

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

Save it to a local variable instead:

$payment = $_SESSION['payment'];
var_dump(isset(${$payment})); 
var_dump(is_object(${$payment}));
查看更多
登录 后发表回答