php-src/Zend/tests/heredoc_018.phpt
2008-05-12 17:57:21 +00:00

18 lines
159 B
PHP

--TEST--
Testing heredoc with tabs before identifier
--FILE--
<?php
$heredoc = <<< A
foo
A;
A;
var_dump(strlen($heredoc) == 9);
?>
--EXPECT--
bool(true)