Yii v2 snippet guide II

Comparing #31 with #32

Revision #32 was created by rackycz rackycz on Oct 3, 2020, 4:26:30 PM.

Decimal Integer formatter

Content

[...]
- use Com\Tecnick\Pdf\TCPDF;
- $pdf = new TCPDF();

**Custom formatter - asDecimalOrInteger **
---
If I generate a PDF-invoice it contains many numbers and it is nice to print them as integers when decimals are not needed. For example number 24 looks better and saves space compared to 24.00. So I created such a formatter. Original inspiration
and how-to was found here: - https://stackoverflow.com/questions/46089960/yii2-formatter-create-custom-format ... thanks to karpy47

My formatter looks like this:

```php
<?php
[...]