Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 349 Bytes

zero.md

File metadata and controls

19 lines (13 loc) · 349 Bytes

Money::zero()

empty monetary object.

Usage

use PostScripton\Money\Currency;
use PostScripton\Money\Money;

Money::zero();                  // $ 0
money_zero();                   // $ 0

Money::zero('RUB');             // 0 ₽
money_zero(currency('RUB'));    // 0 ₽

📌 Back to the contents.