过滤HTML标签

<?php
declare(strict_types=1);
ini_set('display_errors', 'On');
error_reporting(-1);

$html = file_get_contents(__DIR__ . '/demo.html');

$text = strip_tags($html); // 把HTML标签全部过滤掉
$text = str_replace(PHP_EOL, ' ', $text); // 把换行替换成空格
$text = preg_replace('/\s+/', ' ', $text); // 把连续空格替换成一个空格
$text = trim($text);
echo $text;

Copyright © 2024 码农人生. All Rights Reserved