for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/phpviet/number-to-words
* @copyright (c) PHP Viet
* @license [MIT](http://www.opensource.org/licenses/MIT)
*/
namespace PHPViet\NumberToWords;
* @author Vuong Minh <[email protected]>
* @since 1.0.0
class SouthDictionary extends Dictionary
{
* Thay nghìn => ngàn.
*
* @var array
protected static $exponents = [
'',
'ngàn',
'triệu',
'tỷ',
'ngàn tỷ',
'triệu tỷ',
];
* {@inheritdoc}
public function tripletTenSeparator(): string
return 'lẻ';
}
public function specialTripletUnitFour(): string
return 'bốn';