php-src/Zend/tests/heredoc_018.phpt

18 lines
159 B
Plaintext
Raw Normal View History

2008-05-12 17:57:21 +00:00
--TEST--
Testing heredoc with tabs before identifier
--FILE--
<?php
$heredoc = <<< A
foo
A;
A;
var_dump(strlen($heredoc) == 9);
?>
--EXPECT--
bool(true)