Answers for "text strip php"

PHP
2

remove html from string php

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

remove space from start and end of string in php

$trimmed = trim($text);
var_dump($trimmed);
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language