summaryrefslogtreecommitdiff
path: root/Zend/tests/nowdoc_002.phpt
blob: 3b17da814f928d8cd9c9ff1c5fabc2f8fe65c9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
basic binary nowdoc syntax
--FILE--
<?php

require_once 'nowdoc.inc';

print b<<<'ENDOFNOWDOC'
This is a nowdoc test.

ENDOFNOWDOC;

$x = b<<<'ENDOFNOWDOC'
This is another nowdoc test.

ENDOFNOWDOC;

print "{$x}";

?>
--EXPECT--
This is a nowdoc test.
This is another nowdoc test.