Hi Monks!
I am trying to display all elements from this array, but can't
understand why the first foreach wont work.
Global symbol "$dirs" requires explicit package
How can I do this?
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
my @data_res = display(\@data);
sub display {
my @dirs = @_;
foreach my $i (0 .. $#dirs) {
print "$dirs->[$i] \n";
}
#foreach my $i (@dirs) {
#print "$i\n";
#}
$VAR1 = [
'/dir/pages/books',
'/dir/pages/books/2',
'/dir/pages/books/2/77888k.txt',
'/dir/pages/books/2/uhuhuhkk.txt',
'/dir/pages/books/2/8877bg.txt',
'/dir/pages/books/2/uuhu87777.txt',
'/dir/pages/books/2/L',
'/dir/pages/books/2/L/88uu8u.txt',
'/dir/pages/books/2/L/88hhh.txt',
'/dir/pages/books/2/L/uhuhuh.pdf',
'/dir/pages/books/2/L/2611566_01_HA_20160819_2264063.txt',
'/dir/pages/books/7',
'/dir/pages/books/7/ijij8888.txt',
'/dir/pages/books/7/555rf.txt',
'/dir/pages/books/7/88uuhh.txt',
'/dir/pages/books/7/88889kkk.txt'
];
Thank you!
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.