How to remove spaces from a string ?
str_replace
function remove_string($str) {
return str_replace(' ', '', $str);
}
preg_replace
function remove_string($str) {
return preg_replace('/\s/', '', $str);
}
Results
| Function | str_replace | preg_replace |
|---|---|---|
| Average in seconds for 1000000 calls | 0.2044 | 0.2949 |