$the_item->$args,$this->$fld是什么意思
在开源的项目源码里面看到
$the_item->$args=$xxx
$xxxx=$the_item->$args
这里的
$the_item->$args
和
$the_item->args
有什么区别?
[解决办法]
$the_item->$args中的$args是个变量....这个是你属性变量
$the_item->args中的args是你属性名称,不可变