Thread Perlscript in PHP einbinden (17 answers)
Opened by Gast at 2007-10-30 20:40

renee
 2007-11-04 13:39
#101820 #101820
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Das hier funktioniert bei mir:[html]<html>
<body>
<h2>Test</h2>
<?php

exec( "perl test.cgi", $ausgabe );
print_r( $ausgabe );

?>
</body>
</html>[/html]

statt print_r( $ausgabe ); kannst Du auch

[php]
$string = implode( "\n", $ausgabe );
echo $string;[/php]

machen. Dann bekommst Du keinen "Dump", sondern die Ausgabe als String...
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Perlscript in PHP einbinden