我想要求/包括一个文件,并将其内容检索到一个变量中。
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代码。这可能吗?
file_get_contents()
我也遇到过这个问题,尝试类似
<?php function requireToVar($file){ ob_start(); require($file); return ob_get_clean(); } $test=requireToVar($test); ?>