taxonomy_node_get_terms()
возвращает массив с терминами ID в качестве ключа массива. Таким образом, чтобы сделать что-то вроде логики, которую вы хотите, вам нужно что-то вроде следующего:
$tids = taxonomy_node_get_terms($node);
// a $node object is passed as the only parameter in this case, so you would need to use node_load to get that
// the function has an optional second parameter, and 'tid' is the default, so it's not needed
$tids = array_keys($tids);
if (in_array(19, $tids)) {
print '19';
}
if (in_array(21, $tids)) {
print '21';
}