Files
Vitalii Rybalko 5eabb93482 Fix docs: input tabular data, remove unnecessary "-1" (#19489)
Before the change, with this input:
```
$_POST = [
    'Setting' => [
        0 => ['value' => 'value0'],
        1 => ['value' => 'value1'],
    ]
];
```
contents of $settings would be created as follows:
```
$settings = [
    Setting(value='value0'),
];
```
after the change it will be:
```
$settings = [
    Setting(value='value0'),
    Setting(value='value1'),
];
```
2022-07-28 23:34:10 +03:00
..
2022-06-09 08:42:32 +02:00
2021-12-11 01:43:19 +03:00
2022-02-12 17:43:48 +01:00
2022-07-17 12:42:37 +02:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2021-09-14 08:16:13 +02:00
2021-06-27 14:08:41 +02:00
2021-10-13 09:01:32 +02:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2021-09-18 09:31:26 +02:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2022-02-12 17:43:48 +01:00
2016-08-25 18:12:55 +03:00

The Definitive Guide to Yii 2.0

This tutorial is released under the Terms of Yii Documentation.

All Rights Reserved.

2014 (c) Yii Software LLC.

Introduction

Getting Started

Application Structure

Handling Requests

Key Concepts

Working with Databases

Getting Data from Users

Displaying Data

Security

Caching

RESTful Web Services

Development Tools

Testing

Special Topics

Widgets

Helpers