Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to each out the matching airport code value. I.e. if it matches HKG, it will echo Hong Kong.

$city  = array (
            'HKG'=>'Hong Kong',
            'SIN'=>'Singapore',
            'TPE'=>'Taipei',
            'HND'=>'Tokyo',
            'MDW'=>'Chicago',
         );

if(in_array($city, $row->city)){
    echo 
}
share|improve this question
in_array checks values, not keys. You want isset($city[$row->city]). Also, you had the arguments the wrong way around for in_array anyway. – Braiba Jul 18 '12 at 8:06

2 Answers

up vote 5 down vote accepted

Why not just use

echo $city[$row->city];
share|improve this answer
that's really smart. hadn't thought about it. thanks – Lap Ming Lee Jul 18 '12 at 7:59

If you are getting result, just use

echo $row->city;
share|improve this answer
That would only echo out the shortcode name for the city, EG: HKG, SIN, TPE. Not the whole name. – Ben Poulson Jul 18 '12 at 8:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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