Automattic\WooCommerce\StoreApi\Schemas\V1\Agentic
CheckoutSessionSchema::amount_to_cents
Convert amount from decimal to cents.
Метод класса: CheckoutSessionSchema{}
Хуков нет.
Возвращает
int. Amount in cents.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->amount_to_cents( $amount );
- $amount(строка|float) (обязательный)
- Amount in decimal.
Код CheckoutSessionSchema::amount_to_cents() CheckoutSessionSchema::amount to cents WC 11.0.1
protected function amount_to_cents( $amount ) {
return (int) $this->extend->get_formatter( 'money' )->format(
$amount
);
}