summaryrefslogtreecommitdiff
path: root/Zend/tests/heredoc_018.phpt
blob: c10e9c1c4e29630022ea1265185273744368da61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Testing heredoc with tabs before identifier
--FILE--
<?php

$heredoc = <<<	A

foo

	A;
A;

var_dump(strlen($heredoc) == 9);

?>
--EXPECT--
bool(true)