With help from SO, I was able to pull a 'keyword' out of an email subject line to use as a category. Now I've decided to allow multiple categories per image, but can't seem to word my question properly to get a good response from Google. preg_match stops at the first word in the list. I'm sure this has something to do with being 'eager' or simply replacing the pipe symbol | with something else, but I just can't see it.
\b(?:amsterdam|paris|zurich|munich|frankfurt|bulle)\b .
The whole string I'm currently using is:
preg_match("/\b(?:amsterdam|paris|zurich|munich|frankfurt|bulle)\b/i", "." . $subject . ".", $matches);
All I need to do is pull all of these words out if they are present, as opposed to stopping at amsterdam, or whatever word comes first in the subject it's searching. After that, it's just a matter of dealing with the $matches array, right?
Thanks, Mark

preg_match_all- php.net/manual/en/function.preg-match-all.php - just add_allto the function name. – hakre Jun 14 '11 at 23:09$matcheschanges a bit withpreg_match_all– datasage Jun 15 '11 at 1:23print_r($matches)gives meArray ( [0] => Array ( [0] => paris [1] => bulle ) ). I'm looking into it, but any obvious suggestions for dealing with this? – Mark Jun 15 '11 at 2:42$matches. The example shows how to convert the result into a simple array of cities. – hakre Jun 15 '11 at 9:52