remove specific string in php code example
Example 1: php remove text from string
<?php
//Replace the characters "world" in the string "Hello world!" with "Peter":
echo str_replace("world","Peter","Hello world!");
?>
Example 2: trim specific character from strin using php
$widget_id = trim($widget_text,'[]')