yii\mongodb\ActiveRecord::toArray PHP Method

toArray() public method

public toArray ( array $fields = [], array $expand = [], $recursive = true )
$fields array
$expand array
    public function toArray(array $fields = [], array $expand = [], $recursive = true)
    {
        $data = parent::toArray($fields, $expand, false);
        if (!$recursive) {
            return $data;
        }
        return $this->toArrayInternal($data);
    }