is there a way to get the n-th element of a splitted string without using a variable?
My PHP code always looks like this:
$foo = explode(\" \", \"bla
With only one expression I can think of:
echo list($a) = explode(' ', 'a b c') ? $a : ''; echo list($_, $b) = explode(' ', 'a b c') ? $b : '';