Re: Carriage returns
- From: Andy Jeffries <news@xxxxxxxxxxxxxxxxxx>
- Date: Wed, 21 Jun 2006 15:26:05 GMT
On Wed, 21 Jun 2006 08:15:50 -0700, Dan Pearce wrote:
$search = array ('\n\n');
I have also tried \n, \r, \n\r etc... in place of \n\n but to no avail.
Two things:
1) I'd try "\r\n\r\n", Windows users (which I'd imagine your
no-computer-knowledge people are) using notepad inserts \r\n for a
carriage return.
2) Use double quotes instead of single quotes. Try the following script
using PHP CLI:
<?php
print "Two blanks lines with double quotes:";
print "\n\n";
print "Two blanks lines with single quotes:";
print '\n\n';
?>
$ php test2.php
Two blanks lines with double quotes:
Two blanks lines with single quotes:\n\n
\n's aren't interpreted within single quotes, so it searches for the
literal string slash-n not a newline char.
Can anyone help me with this?
I hope the above helps. In future though, rather than guessing at line
endings using a hex editor may help ;-)
Cheers,
Andy
--
Andy Jeffries MBCS CITP ZCE | gPHPEdit Lead Developer
http://www.gphpedit.org | PHP editor for Gnome 2
http://www.andyjeffries.co.uk | Personal site and photos
.
- References:
- Carriage returns
- From: Dan Pearce
- Carriage returns
- Prev by Date: Carriage returns
- Next by Date: ACCESS VALUES WITHIN CLASS WITHIN AN ARRAY
- Previous by thread: Carriage returns
- Next by thread: ACCESS VALUES WITHIN CLASS WITHIN AN ARRAY
- Index(es):
Relevant Pages
|