![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/Filter/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Filter; use Laminas\Filter\FilterInterface; class Sprintf implements FilterInterface { /** * @var string */ protected $format; /** * @var int */ protected $decimals; /** * @var string */ protected $decPoint; /** * @var string */ protected $thousandsSep; /** * @param string $format * @param int|null $decimals * @param string $decPoint * @param string $thousandsSep */ public function __construct($format, $decimals = null, $decPoint = '.', $thousandsSep = ',') { $this->format = $format; $this->decimals = $decimals; $this->decPoint = $decPoint; $this->thousandsSep = $thousandsSep; } /** * Returns the result of filtering $value. * * @param string $value * @return string */ public function filter($value) { if (null !== $this->decimals) { $value = number_format($value, $this->decimals, $this->decPoint, $this->thousandsSep); } return sprintf($this->format, $value); } }