php中关于print 定界符END,print 定界符EOF的用法

定界符

另一种给字符串定界的方法使用定界符语法(“<<<”)。应该在 <<< 之后提供一个标识符,然后是字符串,然后是同样的标识符结束字符串。

结束标识符必须从行的第一列开始。同样,标识符也必须遵循 PHP 中其它任何标签的命名规则:只能包含字母数字下划线,而且必须以下划线或非数字字符开始。
警告

很重要的一点必须指出,结束标识符所在的行不能包含任何其它字符,可能除了一个分号(;)之外。这尤其意味着该标识符不能被缩进,而且在分号之前和之后都不能有任何空格或制表符。同样重要的是要意识到在结束标识符之前的第一个字符必须是你的操作系统中定义的换行符。例如在 Macintosh 系统中是 \r。

如果破坏了这条规则使得结束标识符不“干净”,则它不会被视为结束标识符,PHP 将继续寻找下去。如果在这种情况下找不到合适的结束标识符,将会导致一个在脚本最后一行出现的语法错误。

不能用定界符语法初始化类成员。用其它字符串语法替代。 例 11-3. 非法的例子

<?php

class foo {

public $bar = <<<EOT

bar

EOT;

}

?>
定界符文本表现的就和双引号字符串一样,只是没有双引号。这意味着在定界符文本中不需要转义引号,不过仍然可以用以上列出来的转义代码。变量会被展开,但当在定界符文本中表达复杂变量时和字符串一样同样也要注意。 例 11-4. 定界符字符串例子

<?php

$str = <<<EOD

Example of string

spanning multiple lines

using heredoc syntax.

EOD;

/* More complex example, with variables. */

class foo

{

var $foo;

var $bar;

function foo()

{

$this->foo = ‘Foo’;

$this->bar = array(‘Bar1’, ‘Bar2’, ‘Bar3’);

}

}

$foo = new foo();

$name = ‘MyName’;

echo <<<EOT

My name is “$name”. I am printing some $foo->foo.

Now, I am printing some {$foo->bar[1]}.

This should print a capital ‘A’: \x41

EOT;

?>

注意: 定界符支持是 PHP 4 中加入的。

变量解析

当用双引号或者定界符指定字符串时,其中的变量会被解析。

有两种语法,一种简单的和一种复杂的。简单语法最通用和方便,它提供了解析变量,数组值,或者对象属性的方法。

复杂语法是 PHP 4 引进的,可以用花括号括起一个表达式。

简单语法

如果遇到美元符号($),解析器会尽可能多地取得后面的字符以组成一个合法的变量名。如果想明示指定名字的结束,用花括号把变量名括起来。
<?php

$beer = ‘Heineken’;

echo “$beer’s taste is great”; // works, “‘” is an invalid character for varnames

echo “He drank some $beers”;   // won’t work, ‘s’ is a valid character for varnames

echo “He drank some ${beer}s”; // works

echo “He drank some {$beer}s”; // works

?>
同样也可以解析数组索引或者对象属性。对于数组索引,右方括号(])标志着索引的结束。对象属性则和简单变量适用同样的规则,尽管对于对象属性没有像变量那样的小技巧。
<?php

// These examples are specific to using arrays inside of strings.

// When outside of a string, always quote your array string keys

// and do not use {braces} when outside of strings either.

// Let’s show all errors

error_reporting(E_ALL);

$fruits = array(‘strawberry’ => ‘red’, ‘banana’ => ‘yellow’);

// Works but note that this works differently outside string-quotes

echo “A banana is $fruits[banana].”;

// Works

echo “A banana is {$fruits[‘banana’]}.”;

// Works but PHP looks for a constant named banana first

// as described below.

echo “A banana is {$fruits[banana]}.”;

// Won’t work, use braces.  This results in a parse error.

echo “A banana is $fruits[‘banana’].”;

// Works

echo “A banana is ” . $fruits[‘banana’] . “.”;

// Works

echo “This square is $square->width meters broad.”;

// Won’t work. For a solution, see the complex syntax.

echo “This square is $square->width00 centimeters broad.”;

?>
对于任何更复杂的情况,应该使用复杂语法。

复杂(花括号)语法

不是因为语法复杂而称其为复杂,而是因为用此方法可以包含复杂的表达式。

事实上,用此语法可以在字符串中包含任何在名字空间的值。仅仅用和在字符串之外同样的方法写一个表达式,然后用 { 和 } 把它包含进来。因为不能转义“{”,此语法仅在 $ 紧跟在 { 后面时被识别(用“{\$”来得到一个字面上的“{$”)。用一些例子可以更清晰:
<?php

// Let’s show all errors

error_reporting(E_ALL);

$great = ‘fantastic’;

// 不行,输出为:This is { fantastic}

echo “This is { $great}”;

// 可以,输出为:This is fantastic

echo “This is {$great}”;

echo “This is ${great}”;

// Works

echo “This square is {$square->width}00 centimeters broad.”;

// Works

echo “This works: {$arr[4][3]}”;

// This is wrong for the same reason as $foo[bar] is wrong

// outside a string.  In otherwords, it will still work but

// because PHP first looks for a constant named foo, it will

// throw an error of level E_NOTICE (undefined constant).

echo “This is wrong: {$arr[foo][3]}”;

// Works.  When using multi-dimensional arrays, always use

// braces around arrays when inside of strings

echo “This works: {$arr[‘foo’][3]}”;

// Works.

echo “This works: ” . $arr[‘foo’][3];

echo “You can even write {$obj->values[3]->name}”;

echo “This is the value of the var named $name: {${$name}}”;

?>