hermannhass
Mitglied
Hallo ich lese in meinem Hauptprogramm den output einer php-datei test.php in einen string.
// im hauptprogramm
$str = file_get_contents('test.php');
es kommt aber nur der string "test1" an, "test0" und "test2" nicht.
Rufe ich test.php direkt im explorer auf, kommt korrekt "test0test1test2"
auch hiermit das selbe Ergebnis:
// im hauptprogramm
$str = file_get_contents('test.php');
es kommt aber nur der string "test1" an, "test0" und "test2" nicht.
Rufe ich test.php direkt im explorer auf, kommt korrekt "test0test1test2"
PHP:
<html>
<?php echo "test0"; ?>
test1
<?php echo "test2"; ?>
</html>
auch hiermit das selbe Ergebnis:
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<?php echo "test0"; ?>
test1
<?php echo "test2"; ?>
</body>
</html>