foreach my $tp (@tpList)
{
print "inside function 14";
my $result1_fail = "";
$_=$tp;
next if(/^$/);
print "TP : $tp\n";
$result.="<h3>$tp</h3><BR>\n";
$result1_fail.="<h3>$tp</h3><BR>\n";
#------------------------------#
print "inside function 15";
***my @emptytables=();
my @tables=();***
@tables= getAllTables4TP($tp);
- 請解釋my @ emptytables =()的含義。
- 而且我的@ tables =();
- 這是用來定義一些空數組嗎?
- 如果是,那麼它有什麼用?
也許你想了解[Perl數據結構(http://perldoc.perl.org/perldata.html),並使用[我的](http://perldoc.perl.org/functions/my.html)來聲明變量。 – PerlDuck