1
0
mirror of https://github.com/php/php-src.git synced 2026-04-19 05:51:02 +02:00
Files
archived-php-src/Zend/tests/heredoc_018.phpt
Felipe Pena e35c457913 - New tests
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)