PHP Интерфейс yii\base\Arrayable

С версии: 2.0
Автор: Qiang Xue ([email protected])
Показать файл Открыть проект Примеры использования интерфейса

Открытые методы

Метод Описание
extraFields ( ) : array Returns the list of additional fields that can be returned by Arrayable::toArray in addition to those listed in Arrayable::fields.
fields ( ) : array Returns the list of fields that should be returned by default by Arrayable::toArray when no specific fields are specified.
toArray ( array $fields = [], array $expand = [], boolean $recursive = true ) : array Converts the object into an array.

Описание методов

extraFields() публичный Метод

This method is similar to Arrayable::fields except that the list of fields declared by this method are not returned by default by Arrayable::toArray. Only when a field in the list is explicitly requested, will it be included in the result of Arrayable::toArray.
См. также: toArray()
См. также: fields()
public extraFields ( ) : array
Результат array the list of expandable field names or field definitions. Please refer to [[fields()]] on the format of the return value.

fields() публичный Метод

A field is a named element in the returned array by Arrayable::toArray. This method should return an array of field names or field definitions. If the former, the field name will be treated as an object property name whose value will be used as the field value. If the latter, the array key should be the field name while the array value should be the corresponding field definition which can be either an object property name or a PHP callable returning the corresponding field value. The signature of the callable should be: php function ($model, $field) { return field value } For example, the following code declares four fields: - email: the field name is the same as the property name email; - firstName and lastName: the field names are firstName and lastName, and their values are obtained from the first_name and last_name properties; - fullName: the field name is fullName. Its value is obtained by concatenating first_name and last_name. php return [ 'email', 'firstName' => 'first_name', 'lastName' => 'last_name', 'fullName' => function ($model) { return $model->first_name . ' ' . $model->last_name; }, ];
См. также: toArray()
public fields ( ) : array
Результат array the list of field names or field definitions.

toArray() публичный Метод

Converts the object into an array.
public toArray ( array $fields = [], array $expand = [], boolean $recursive = true ) : array
$fields array the fields that the output array should contain. Fields not specified in [[fields()]] will be ignored. If this parameter is empty, all fields as specified in [[fields()]] will be returned.
$expand array the additional fields that the output array should contain. Fields not specified in [[extraFields()]] will be ignored. If this parameter is empty, no extra fields will be returned.
$recursive boolean whether to recursively return array representation of embedded objects.
Результат array the array representation of the object