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);
link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

No. What you're trying to do is invalid and will not work. The equivalent PHP code would be:

$args = preg_split('/\n/', $message);
$command = array_shift($args);

The use of preg_ functions should be only used when necessary, so you could actually replace the preg_split with:

explode("\n", $message);
link|improve this answer
Thanks Tim, extremely helpful. – ehime Dec 1 '11 at 22:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.