php 将值列附加到json / array中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将值列附加到json / array中相关的知识,希望对你有一定的参考价值。

//in model Reply.php

protected $appends = ['favoritesCount'];


//so when data are being called from this model, element favoritesCount are included in the json/array


//another example from stackoverflow

class User extends Eloquent {
 protected $appends = array('status');

    public function getStatusAttribute() {
      return 'someStatus';
   }
}

以上是关于php 将值列附加到json / array中的主要内容,如果未能解决你的问题,请参考以下文章