Hey,
I run the following code:
The first hash dump obviously shows that there is nothing in %products.
The second hash dump shows that $VAR1 = { 'Category' => { 'Product' => {} } } has now been pushed into %products.
However I don't want to push anything into the hash if it doesn't exist. Thats why I have tried to use an exists condition.
How can I ensure that the hash remains empty after attempting to pass a quantity into $productsquantity?
Thanks alot,
Chris
I run the following code:
Code:
#! /usr/bin/perl
use strict;
use Data::Dumper;
my %products;
my $category = 'Category';
my $product = 'Product';
my $colour = 'Colour';
print Dumper(\%products);
my $productsquantity = (exists $products{$category}{$product}{$colour}) ? $products{$category}{$product}{$colour}{'Quantity'} : '';
print Dumper(\%products);
The first hash dump obviously shows that there is nothing in %products.
The second hash dump shows that $VAR1 = { 'Category' => { 'Product' => {} } } has now been pushed into %products.
However I don't want to push anything into the hash if it doesn't exist. Thats why I have tried to use an exists condition.
How can I ensure that the hash remains empty after attempting to pass a quantity into $productsquantity?
Thanks alot,
Chris