This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Heredoc is not processed. #113
Closed
Description
<?php
$str = <<<EOT
This is a foo.
He likes bar.
But bar likes baz.
EOT;
This is not recognized, but yet a simplified variant from the official PHP docs. Proper heredoc support is required since larger string sections in PHP are best done using that. For instance, I use it to store translated paragraphs.