这在逻辑上是我想要实现的目标:
$variable = include "file.html";
strip_tags($variable);
希望我有意义。
答案 0 :(得分:4)
您可以使用file_get_contents
(http://php.net/manual/en/function.file-get-contents.php)而不是include
来做您愿意做的事。
示例:
<?php
$file = 'file.html';
$data_without_html_tags = strip_tags(file_get_contents($file));
?>
答案 1 :(得分:2)
您可以通过缓存缓存来轻松完成此操作:
ob_start();
include("whatever.html");
$whateverHtml = ob_get_clean();
有关输出控制的更多信息here。