Yii v2 snippet guide

Comparing #210 with #211

Revision #211 was created by rackycz rackycz on Jul 8, 2020, 4:58:12 PM.

Formatter

Content

[...]
As you can see in the snippet above, other controllers must contain row "use app\controllers\BaseController" + "extends BaseController".

**Formatting values based on your Locale **
---
Go to config\web.php and add following values:

 
```php
$config = [
// ..
[...]
// ...
]

 
```
 
PS: I do not use currency formatter as it always puts the currency name before the number. For example USD 123. But in my country we use format: 123 CZK.

More links on this topic:
- [yii\i18n\Formatter](https://www.yiiframework.com/doc/api/2.0/yii-i18n-formatter)
- [Examples](https://yii2-framework.readthedocs.io/en/stable/guide/output-formatter)
- [More examples](https://stackoverflow.com/questions/27078178/yii2-number-format)
[...]