php – 从变量中的字符串中获取对象数据

前端之家收集整理的这篇文章主要介绍了php – 从变量中的字符串中获取对象数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当对象名称(类别)直接放置时,它返回正确的值,如:
$primary = $this->dbmapper->category['primary'] ;  // ( Correct Output )

但是,当将对象名称放在名为$dataname的变量中时,它返回空白,如:

$dataname = 'category';
 $primary = $this->dbmapper->$dataname['primary'] ;   ( Blank Output )

我的构造函数变量是

$this->dbmapper = $this->mapper();

我的功能是:

function mapper($module='')
    {
        $mapper =  array();
        $mapper['category']['table'] = 'allcategory';
        $mapper['category']['primary'] = 'categoryID';
        $mapper['page']['table'] = 'allpages';
        $mapper['page']['primary'] = 'pageID';
        return (object) $mapper;
    }
要通过变量访问对象属性(特别是如果它是一个数组),请用括号括起来:
...
$dataname = 'category';
$primary = $this->dbmapper->{$dataname}['primary'];
原文链接:https://www.f2er.com/php/133820.html

猜你在找的PHP相关文章