开发者

Object of class charts could not be converted to string

开发者 https://www.devze.com 2023-02-11 01:22 出处:网络
I have written a class for which the constructor function has 3 arguments. In some function of the class I have to query from db like this

I have written a class for which the constructor function has 3 arguments. In some function of the class I have to query from db like this $profit_row->operating_profit.

now instead of writing operating_profit, I want to pass it as a variable to the constructor of the class. So my whole variable becomes $profit_row->$this->num where $this->num is initialized in the constructor.

When I do this I get the following error. How to go about this. Object of class charts could not be converted to 开发者_开发知识库string


Maybe this is what you are looking for?

$profit_row->{$this->num}


$profit_row->{$this->num}

you have a precedence problem.

0

精彩评论

暂无评论...
验证码 换一张
取 消