Leser: 2
10 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
use PHP;
my $php_file = '/path/to/file.php';
open my $fh,'<',$php_file or die $!;
my $content = do{local $/;<$fh>};
close $fh;
my $return;
PHP::options( stdout => sub {$return = $_[0];});
PHP::eval($content);
1
2
3
use LWP::Simple;
my $return = get('http://host.tld/script.php?param1=value1¶m2=value2');
10 Einträge, 1 Seite |