1234567891011121314151617181920212223242526272829303132 |
- --TEST--
- Torture the T_END_HEREDOC rules with variable expansions (heredoc)
- --FILE--
- <?php
- require_once 'nowdoc.inc';
- $fooledYou = '';
- print <<<ENDOFHEREDOC
- {$fooledYou}ENDOFHEREDOC{$fooledYou}
- ENDOFHEREDOC{$fooledYou}
- {$fooledYou}ENDOFHEREDOC
- ENDOFHEREDOC;
- $x = <<<ENDOFHEREDOC
- {$fooledYou}ENDOFHEREDOC{$fooledYou}
- ENDOFHEREDOC{$fooledYou}
- {$fooledYou}ENDOFHEREDOC
- ENDOFHEREDOC;
- print "{$x}";
- ?>
- --EXPECT--
- ENDOFHEREDOC
- ENDOFHEREDOC
- ENDOFHEREDOC
- ENDOFHEREDOC
- ENDOFHEREDOC
- ENDOFHEREDOC
|