如何将ARRAY转换为VARIABLE?

时间:2016-06-01 10:19:26

标签: php arrays

我在wishlist成员插件代码中需要帮助。我需要获取已登录用户的级别ID。

<?php global $current_user;
      get_currentuserinfo();

   $my_user_id= $current_user->ID;

$mywlmapi= new WLMAPI();

$my_user_levels=$mywlmapi->GetUserLevels($my_user_id );
var_dump( $my_user_levels);

?>

现在的输出是:array(1) { [1458795207]=> string(16) "Bronze per month" }

我需要在var $levelid = 1458795207中存储1458795207,

所以我可以echo $levelid并获得级别ID。

提前致谢。

0 个答案:

没有答案