Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用由大学教授的实习生创建的数据库。许多字段的名称都类似于“Revenues_(budget)”。
目前,在使用具有字段作为属性的对象时,我会执行类似的操作
$f = 'Revenues_(budget)'; echo $obj->$f;
这很好用,但我想知道是否有更优雅或至少简洁的方式来处理这些?
您可以在一个表达式中做到这一点:
echo $obj->{'Revenues_(budget)'};