Answers for "single code remove from string php"

PHP
4

remove html from string php

echo strip_tags("Hello <b>world!</b>");
Posted by: Guest on May-18-2020
-1

php remove control characters from string

preg_replace('/[[:cntrl:]]/', '', $input);
Posted by: Guest on June-29-2021

Code answers related to "single code remove from string php"

Browse Popular Code Answers by Language