I have the following function
function blah($string) {
$match = array('red', 'green', 'blue');
$replace = array('1', '1,', '0');
return str_replace($match, $replace $string);
}
What I'm trying to do is, if the input is not in the match array, return 0.
Since this is only used on the back end once/day, performance isn't the biggest issue but since i'm still learning PHP, I'd like to understand the proper way of doing this.
Any help is really appreciated! Thanks in advance!