function english_list($items, $conj) {
$tail = $conj . array_pop($items);
return implode(', ', $items) . $tail;
}
$colors = array('red', 'blue', 'green', 'yellow');
echo "Choose ", english_list($colors, " or "), "\n";
Not quite as concise, but quite as readable to someone who doesn't know the language. Maybe even more so. Not being a Python user, i find myself unsure of what colors[:-1] means. (For example, even if i guess that it's a slice....what does it include?) Or even colors[-1], for that matter -- that's flat-out invalid in most languages, and doesn't do what a Python wonk might think it does in most of the others.
On the other hand, someone who doesn't know PHP (but does know C, C++, Java, JS, Perl, Ruby...or even Python) would still find this readable. Sure, they might not know what array_pop and implode do, but they can very easily find that out. Try googling for either of them; the PHP manual -- specifically for the respective function, no less! -- is the first result. Now try :. :) (OK, let's be fair: "python array colon operator".) The first result contains the answer, but you have to dig it out from pretty much everything you did or didn't want to know about arrays.