Thread Ist eine Variable ein Filehandle? (4 answers)
Opened by pq at 2016-02-21 13:59

pq
 2016-02-21 14:14
#183953 #183953
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
hmm. CPAN:Ref::Util scheint zu tun, was ich möchte.

Code (perl): (dl )
1
2
use Ref::Util qw/ is_globref is_ioref /;
return is_globref($var) || is_ioref($var);


cool.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Ist eine Variable ein Filehandle?