replace all substings php code example
Example 1: replace all php
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");
// Fornece: Hll Wrld f PHP
Example 2: php substr_replace
substr_replace(string,replacement,start,length)