psStrRemove() Removes a substring
Description:
Replaces a substring with nothing "" I always seam to use str_replace("something","",$str), tired of typing it.
Usage:
$str = psStrRemove($needle,$haystack);
Example:
$str = psStrRemove(".php","thisfile.php"); // returns "thisfile"
Code:
function psStrRemove($needle,$haystack) { $str = str_replace($needle,"",$haystack); return $str; }
Changlelog:
|
|