Answers for "php remove script tag from string"

PHP
0

php remove script tag from string

$html = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $html);
Posted by: Guest on August-16-2020

Browse Popular Code Answers by Language