Revision #32 has been created by rackycz on Oct 3, 2020, 4:26:30 PM with the memo:
Decimal Integer formatter
« previous (#31) next (#33) »
Changes
Title
unchanged
Yii v2 snippet guide II
Category
unchanged
Tutorials
Yii version
unchanged
2.0
Tags
unchanged
tutorial,beginner,yii2,snippets
Content
changed
[...]
- 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[...]