Here document use in php

DevOps

YOUR COSMETIC CARE STARTS HERE

Find the Best Cosmetic Hospitals

Trusted • Curated • Easy

Looking for the right place for a cosmetic procedure? Explore top cosmetic hospitals in one place and choose with confidence.

“Small steps lead to big changes — today is a perfect day to begin.”

Explore Cosmetic Hospitals Compare hospitals, services & options quickly.

✓ Shortlist providers • ✓ Review options • ✓ Take the next step with confidence

php here document is another way to display the text. In this a token is use in which write multiple line without any quotes like:

<span style="color:#260ff3" class="has-inline-color"><strong>echo <<<Token
        data..
        Token;</strong></span>Code language: JavaScript (javascript)
<?php
  echo <<<MyData
       Welcome to here document   
       it is very "important" data.
       MyData;                       
  echo MyData;
?>Code language: HTML, XML (xml)
<?php
$info = <<<MyData
       Welcome to here document   
       it is very "important" data.
       MyData;
echo $info;
?>Code language: HTML, XML (xml)