\xampp\apache\conf\extra\httpd-xampp.conf 파일에 아래 내용을 추가한다.
<FilesMatch "\.html$">
SetHandler application/x-httpd-php
</FilesMatch>
SetHandler application/x-httpd-php
</FilesMatch>
Apache를 재시작 하면 적용된다.
$str = "<a href=''>텍스트</a>"; $str = preg_replace("/<a[^>]*>/i", '', $str); $str = preg_replace("/<\/a>/i", '', $str); echo $str;