0
這在邏輯上我想達到什麼:PHP:將包含數據分配給變量?
$variable = include "file.html";
strip_tags($variable);
- 是否有可能
- 如果沒有,我怎麼能運行,我想包括文件的內容用strip_tags功能。我只想獲取文件的文本內容,而不是html數據。
希望我有道理。
這在邏輯上我想達到什麼:PHP:將包含數據分配給變量?
$variable = include "file.html";
strip_tags($variable);
希望我有道理。
你願意做什麼可以使用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));
?>
您可以通過緩衝緩存做到這一點很容易:
ob_start();
include("whatever.html");
$whateverHtml = ob_get_clean();
更多關於輸出控制here。
謝謝。即時打勾。 – user1481563 2012-07-18 04:24:30