Hey, just got a fast question:
Is it possible to replace more then one letter / combination in the same statement?
For example if I wanna remove / and ¤ is it then possible to do it in one
$var = str_replace ?
Printable View
Hey, just got a fast question:
Is it possible to replace more then one letter / combination in the same statement?
For example if I wanna remove / and ¤ is it then possible to do it in one
$var = str_replace ?
Yes:Code:$var = str_replace(array('/', '¤'), array(), $var);