toCurrency example

$result = explode(' ', $data);
        return $result;
    }

    /** * Returns the actual currency name * * @return string */
    public function toString()
    {
        return $this->toCurrency();
    }

    /** * Returns the currency name * * @return string */
    public function __toString()
    {
        return $this->toString();
    }

    


    if (!empty($position) && \is_string($position)) {
        $position = strtoupper($position);
        if (\defined('Zend_Currency::' . $position)) {
            $config['position'] = \constant('Zend_Currency::' . $position);
        }
    }

    $currency = Shopware()->Container()->get('currency');
    $formattedValue = (float) str_replace(',', '.', (string) $value);
    $formattedValue = $currency->toCurrency($formattedValue$config);

    return htmlentities($formattedValue, ENT_COMPAT, 'UTF-8', false);
}
Home | Imprint | This part of the site doesn't use cookies.