Strange how quick one forget things...9 months no PHP and I'm concatenating strings with +, call members with "." instead of "=>"....ai

Anyhows, question:

I'll be saving data directly from a textarea to a text field in a mysql database.
When reading it back, I'll need to split the string on it's line breaks to create list items (<li>).

Q1: Forgot...as what is linebreaks saved from a textarea to the database? \r\n no?

Q2: How this look for a class member reading the above back from the database, split it into an array ($this->notes is the text saved earlier to the database...did not create the functionality for that yet):
Code:
function getNotes() {
	$records = preg_split('/[\r\n]+/', $this->notes, -1, PREG_SPLIT_NO_EMPTY);
	return $records;			
}
Above work as is (assuming the line break will be \r\n, I entered some data manually into the database), but when using it, I have to strip off the trailing \r\n. Don't like that.
Code:
$notes = $post->getNotes();
foreach($notes as $note) {
	echo('<li>'.str_replace('\r\n', '', $note).'</li>');
}