vote up 4 vote down star
1

I've been developing with PHP for some years now, and recently came across this code:

<?php
echo <<<EOB
    <html>
    <head>
        <title>My title</title>
    </head>
    ...
EOB;
?>

I've never seen this approach to print HTML, which seems to be pretty useful and less prone to some weird variable or double quote syntax error.

I've searched for some official information about this, and only found a post of Rasmus talking about this.

So my question is, can anyone explain me in details about this functionality and what EOB means? Maybe End Of Block?

Thanks in advance for all your answers.

flag

What's weird about this code is it could have just exited PHP mode and accomplished the same thing. – jmucchiello Jun 30 at 0:22

4 Answers

vote up 16 vote down check

This is known as heredoc syntax. The documentation will tell you everything you need to know.

Essentially, however:

A third way to delimit strings is the heredoc syntax: <<<. After this operator, an identifier is provided, then a newline. The string itself follows, and then the same identifier again to close the quotation.

The closing identifier must begin in the first column of the line. Also, the identifier must follow the same naming rules as any other label in PHP: it must contain only alphanumeric characters and underscores, and must start with a non-digit character or underscore.

So EOB is just what the author chose as his delimiter, not really sure what it stands for in his case but the identifier can be whatever you want.

link|flag
2  
I'm guessing "end of block" :). – ryanulit Jun 26 at 11:10
Makes sense. :) – Paolo Bergantino Jun 26 at 11:12
I've always wondered, is it pronounced "here - dock"? – Jonathan Sampson Jun 30 at 0:19
Good question, I actually pronounce it "heary - dock" but thinking about that must be wrong :P – Paolo Bergantino Jun 30 at 0:21
vote up 4 vote down

Just for the sake of completeness, heredoc in PHP is inherited from perl, which itself inherited it from the bourne shell.

link|flag
vote up 2 vote down

It´s called heredoc and is described in the manual.

link|flag
vote up 1 vote down

official term is 'here document' i believe, usually shortened to 'heredoc'.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.