加入收藏 | 设为首页 | 会员中心 | 我要投稿 北几岛 (https://www.beijidao.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

来自字符串的PHP变量值

发布时间:2021-07-06 05:21:12 所属栏目:大数据 来源: https://www.jb51.cc
导读:如何从变量字符串中获取值? $Member_Student = 3600;$selectedItem = "Member_Student";$price = "$" . $selectedItem;print_r($price); //prints $Member_Student instead of 3600 我不能使用eval功能. @H_502_10@解决方法: 使用curly braces to denote a

如何从变量字符串中获取值?

$Member_Student        = 3600;
$selectedItem = "Member_Student";
$price = "$" . $selectedItem;
print_r($price); //prints $Member_Student instead of 3600

我不能使用eval功能.

@H_502_10@解决方法:

使用curly braces to denote a variable:

$Member_Student        = 3600;
$selectedItem = "Member_Student";
$price = ${$selectedItem};
print_r($price); // prints 3600

(编辑:北几岛)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读