Thread Dumper einlesen mit xmlin()? (20 answers)
Opened by Flodimodi at 2013-02-27 07:50

Gast wer
 2013-03-07 12:03
#166260 #166260
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;

my $file='Dumper.xml'; # <= ist aber keine XML Datei!
my $data=load_dump($file);
print Dumper($data);

sub load_dump
{
  my $file=shift;
  return do($file);
}

Last edited: 2013-03-07 12:09:22 +0100 (CET)

View full thread Dumper einlesen mit xmlin()?