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!

link|improve this question

64% accept rate
feedback

3 Answers

I suggest using PHP's built-in in_array() function instead of writing your own.

link|improve this answer
so just to be clear, into the match array, I ONLY put what i want to be returned as 1? – Mike Oct 5 '11 at 5:05
Seems that returned 0 for everything in the array, the input array is a set of categories which I auto approve while 0 goes up for manual review. – Mike Oct 5 '11 at 5:18
@Mike: Do you really need to return 0 or 1? Would boolean true or false work just as well for you? If so, it would simplify things and allow you to use the return value from in_array() without casting to an integer. I suspect that might be the root of your problem. – Asaph Oct 5 '11 at 5:42
the returned value does need to be either 1 or 0, in my case 1 = approved , 0 = pending, – Mike Oct 5 '11 at 6:21
feedback

How about:

function blah($string) {
    $matches = array('red', 'green');        
    return in_array($string, $matches);
}

Another thing I might add is that you should avoid using a function like str_replace (which, at a glance, would mean replacing strings) for something that is testing existence as it might confuse other programmers (or yourself) when reading the code.

link|improve this answer
perhaps i'm totally missing the fundamentals, but what actually returns either 1 or 0? everything was returned as 0. – Mike Oct 5 '11 at 5:50
How are you calling the function? echo blah('red'); should print 1. – cdmckay Oct 5 '11 at 5:52
$approved = approved(catinput(preg_replace('/^A-z0-9\s/', "", trim($product['category'])))); (catinput is pretty much the same match/replace to take all the preset categories and change them to the list of categories that i want -- such as car -> cars, etc) – Mike Oct 5 '11 at 5:55
just checked vardump and it returns a blank – Mike Oct 5 '11 at 6:04
Ensure all your variables are holding what you think. For example, call approved('red') (where 'red' is a category you know is in there) before passing it a big complicated expression. – cdmckay Oct 5 '11 at 6:04
show 1 more comment
feedback
up vote 0 down vote accepted

I ended up using the following code:

function approved($input) {
$match = array('red','green','blue');
if(in_array(strtolower($input), $match)) {
   return 1;
} else {
    return 0;
}
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.