- or download this
[BLOCK1]
KEY1=VALUE1
...
[BLOCK2]
KEY1=VALUE1
KEY2=VALUE2
- or download this
#!/usr/bin/perl
use warnings;
...
warn( "Parameter '$_' is missing from INI!\n" )
unless exists $config{$_};
}
- or download this
foo 'test'
baz 'test-2'
- or download this
Parameter 'bar' is missing from INI!
Parameter 'quux' is missing from INI!
- or download this
#!/usr/bin/perl
use warnings;
...
warn( "Parameter '$_' is missing from INI!\n" )
unless exists $config{'requirements.%test-2'};
}
- or download this
[requirements]
@test=('bar' 'baz')
%test-2=( bar => 1 , baz => 2 )
test_foo='foo'
quux_test='quux'
- or download this
Requirements foo
Requirements Array (bar baz)
...
Parameter 'bar' is missing from INI!
Parameter 'baz' is missing from INI!
Parameter 'quux' is missing from INI!