WC_Cart::is_empty PHP 메소드

is_empty() 공개 메소드

Checks if the cart is empty.
public is_empty ( ) : boolean
리턴 boolean
    public function is_empty()
    {
        return 0 === sizeof($this->get_cart());
    }
WC_Cart