summaryrefslogtreecommitdiff
path: root/Zend/tests/heredoc_017.phpt
blob: 6c4b8f3cde9faca7d012c9a735b739b14c98d4e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Testinh heredoc syntax
--FILE--
<?php

$a = <<<A
	A;
;
 A;
\;
A;

var_dump(strlen($a) == 12);

?>
--EXPECT--
bool(true)