Jump to content

"here document"


groover

Recommended Posts

  • 3 weeks later...
[quote]
Please forgive me replying to myself but I do need help on this piece.
[/quote]
Bumping your topic is fine as long as you wait a number of hours for a reply. I'd recommend once a day. Check the [a href=\"http://www.phpfreaks.com/forums/index.php?act=boardrules\" target=\"_blank\"]Board's Guidelines[/a] for more info.

As far as your question is concerned. I'm also not aware of any syntax in Javascript that allows you to accomplish what can be done using the here doc syntax in PHP.

However, you can do something similar to the following. Note that new lines are escaped with a "\". You'll still have to escape quotes etc as well.

[code]
var avariable = "words";
var aString = "ehwkjhewkj ejhwjkehwkje jwhejwhew <br />\
ejhwjkewh"+avariable+" <br />\
wkejwkejlw  dskjsdhksdhksh<br />\
kdjsldjslkdjs<br /> \
dkljslkdslkdjs<br /> \
dsjldjlksjd";

document.write(aString);
[/code]
Also,In case you're not aware of it. You can use += to add to a string.
[code]
var aString = 'one ';
aString += 'two';
document.write(aString);
[/code]
Link to comment
https://forums.phpfreaks.com/topic/3216-here-document/#findComment-11406
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.