I guess that would not work, because the OP apparently wants to trigger the help function if any of the variables is absent, not if they are all missing.

So using a hash, it would have to be something like this:

help() if 22 > scalar values %params; # scalar unnecessary, just to make the context clearer

But that would not be very robust, for example if the %params may have some elements other that the list of mandatory parameters.

So an approach more reliable than just counting the hash values would be to test each and every single mandatory param:

for (qw / server database user password ... initversion /) { help() and last unless (defined $params{$_} and $params{$_}); }

The exact test on the %params values would depend on how the hash is initialized.


In reply to Re^2: checking values of variables by Laurent_R
in thread checking values of variables by fionbarr

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.