WC_Cart::get_cart_hash()publicWC 3.6.0

Returns the hash based on cart contents.

Method of the class: WC_Cart{}

Return

String. hash for cart content

Usage

$WC_Cart = new WC_Cart();
$WC_Cart->get_cart_hash();

Changelog

Since 3.6.0 Introduced.

WC_Cart::get_cart_hash() code WC 8.7.0

public function get_cart_hash() {
	$cart_session = $this->session->get_cart_for_session();
	$hash         = $cart_session ? md5( wp_json_encode( $cart_session ) . $this->get_total( 'edit' ) ) : '';
	$hash         = apply_filters_deprecated( 'woocommerce_add_to_cart_hash', array( $hash, $cart_session ), '3.6.0', 'woocommerce_cart_hash' );

	return apply_filters( 'woocommerce_cart_hash', $hash, $cart_session );
}