Can someone tell me if I'm right with this? I'm trying to port a fairly massive perl script into OO-PHP, and have been stuck on a few things, this is one of them and just need some confirmation if I'm doing it right, the perl code is:
my ($command,@args)=split(/\n/,$message);
is this the same as doing this in PHP?
list($command, $args[]) = preg_split('/\n/', $message);