RE: [PHP] explode separate lines

2004-02-04 Thread Vail, Warren
$result = explode(\n, $orignalvalue); Beware, there are several caveats with line feeds. Depending on where the data originated, it could be \r\n or \r. Warren Vail -Original Message- From: Diana Castillo [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 04, 2004 8:50 AM To: [EMAIL

RE: [PHP] explode separate lines

2004-02-04 Thread Burhan Khalid
Diana Castillo wrote: does anyone know how to do an explode where the separator is a linefeed? You could try explode(\n, $stuff);, but if you are wanting to read information from a file and store each line in an array, the file() function does exactly that. -- Burhan Khalid

[PHP] [ERR] RE: [PHP] explode separate lines

2004-02-04 Thread postmaster
Transmit Report: To: [EMAIL PROTECTED], 402 Local User Inbox Full ([EMAIL PROTECTED]) ---BeginMessage--- Diana Castillo wrote: does anyone know how to do an explode where the separator is a linefeed? You could try explode(\n, $stuff);, but if you are wanting to read information from a file