我有一个数组,我想将该数组的一个键的值添加到同一个数组的另一个键。这是我的代码
$current_user = $current_user->user_name;
$_SESSION['user_name'] = $current_user;
现在我想使用此$ _SESSION [' user_name']并将此值添加到同一数组$ _SESSION [' _PREFERENCES']的另一个键中。此键具有值。我想要这样的东西
$_SESSION['(value of user_name key)_PREFERENCES']
请指导我怎么做?谢谢。
答案 0 :(得分:4)
添加连接:
$_SESSION[$_SESSION['user_name'] . '_PREFERENCES'] = $USER_PREFERENCES;
// May this variable be array or string.