PHP 定界符EOT用法

对于EOT我们需要知道它不是固定EOT,可自己定义名字,而且我们需要知道在代码中的换行符‘/n’,和在浏览器中显示出来的换行
是不一样的两个操作符。

注意:<<

";
	$test = "hello\r\n";

    if($str == $test)
    {
        echo "yes
"; } else { echo "no
"; } print_r(strlen($str)); echo "
"; print_r(strlen($test)); ?>

结果为

hello

yes

7

7


你可能感兴趣的:(php)