|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-10-24 09:10 UTC] kalle@php.net
-Status: Open
+Status: Suspended
[2017-10-24 09:10 UTC] kalle@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 04:00:02 2025 UTC |
Description: ------------ Embedded Perl perl-1.0.0 returns nothing via web browser. Reproduce code: --------------- <?php ob_start(); $perl = new Perl(); $perl->require("test1.pl"); $out = ob_get_contents(); ob_end_clean(); print "Perl: $out"; print "PHP: Hello from php!\n"; ?> Expected result: ---------------- Perl: hello from perl!!!! PHP: Hello from php! Actual result: -------------- Nothing... but when executed at the command line script works as expected.