WC_Order::has_cart_hash()publicWC 1.0

See if order matches cart_hash.

Метод класса: WC_Order{}

Хуков нет.

Возвращает

true|false.

Использование

$WC_Order = new WC_Order();
$WC_Order->has_cart_hash( $cart_hash );
$cart_hash(строка)
Cart hash.
По умолчанию: ''

Код WC_Order::has_cart_hash() WC 8.7.0

public function has_cart_hash( $cart_hash = '' ) {
	return hash_equals( $this->get_cart_hash(), $cart_hash ); // @codingStandardsIgnoreLine
}