I\'m not sure if my memory is wrong, but when I last used PHP (years ago), I vaguely remember doing something like this:
$firstVariable, $secondVariable = ex
list($firstVar, $secondVar) = explode(' ', 'Foo Bar');
list() is what you are after.