include './a.html';
1
ywisax 2022-11-02 14:40:56 +08:00 1
```php
<?php include './a.html'; $html = ob_get_clean(); $html = str_replace('xxxx', 'xxx', $html); echo $html; ``` |