一尘不染

要求/包含到变量中

php

我想要求/包括一个文件,并将其内容检索到一个变量中。

test.php

<?php
echo "seconds passed since 01-01-1970 00:00 GMT is ".time();
?>

index.php

<?php
$test=require("test.php");
echo "the content of test.php is:<hr>".$test;
?>

喜欢file_get_contents()但是比它仍然应该执行PHP代码。这可能吗?


阅读 327

收藏
2020-05-29

共1个答案

一尘不染

我也遇到过这个问题,尝试类似

<?php
function requireToVar($file){
    ob_start();
    require($file);
    return ob_get_clean();
}
$test=requireToVar($test);
?>
2020-05-29