xref: /PHP-5.5/Zend/tests/heredoc_017.phpt (revision e4c76641)
1--TEST--
2Testinh heredoc syntax
3--FILE--
4<?php
5
6$a = <<<A
7	A;
8;
9 A;
10\;
11A;
12
13var_dump(strlen($a) == 12);
14
15?>
16--EXPECT--
17bool(true)
18