php remove text from string 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: replace all numbers in string php
$words = preg_replace('/[0-9]+/', '', $words);