从另一个 PHP 文件中读取 echo
的输出,可以使用 file_get_contents
函数。以下是一个简单的示例:
假设我们有一个名为 file1.php
的文件,其中包含以下内容:
<?php
echo "Hello, World!";
?>
现在,我们可以在另一个 PHP 文件中读取 file1.php
的输出,如下所示:
<?php
$file1_output = file_get_contents("file1.php");
echo $file1_output;
?>
这将输出:
Hello, World!
这种方法适用于读取文件中的任何内容,包括 HTML、CSS、JavaScript 等。
领取专属 10元无门槛券
手把手带您无忧上云