scalar to array?



What is the easiest way to push a scalar variable containing text into an array?

i.e.

$text = 'here is
a line
that has
four lines';

@lines = ???

the end result is:

@lines =('here is', 'a line', 'that has', 'four lines');
.