我有一个返回数组的函数,我试图从中调用某个值,就像这样
echo $this->getName()['first']. ' ' .$this->getName()['last'];
获取名称函数...
protected function getName(){
return $this->user;
}
数组的布局是这样的......
$this->user = array(
'id' => $id,
'first' => $fn,
'last' => $ln
);
这适用于本地主机,但不适用于我的生产服务器。我猜它与我的 php.ini 有关,但不确定。任何帮助表示赞赏。