str_remove

remove needle from haystack

function str_remove($needle, $haystack) {
	return implode("", explode($needle, $haystack));
}

Usage

string, string str_remove -> string


Comments

Add your comment