Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
*
4
* @package tests
5
*/
6
/** tests */
7
function test_eofquotes ()
8
{
9
}
10
echo <<< EOF
11
This shouldn't be parsed
12
function bob ()
13
{
14
}
15
EOF;
16
 
17
$string = <<< EOF
18
This shouldn't be parsed
19
function bob ()
20
{
21
}
22
EOF;
23
?>