xref: /PHP-5.5/Zend/tests/heredoc_012.phpt (revision b9d13d8f)
1--TEST--
2Heredoc with double quotes
3--FILE--
4<?php
5$test = "foo";
6$var = <<<"MYLABEL"
7test: $test
8MYLABEL;
9echo $var;
10?>
11--EXPECT--
12test: foo
13