fork download
  1. <?php
  2.  
  3. $tc = <<<EOF
  4. Terms & Conditions: Mandatory charge of £10 for cancellations.
  5. VAT E&EO
  6. EOF;
  7.  
  8. $tc = str_replace (array("\n", "£", "&"), array("<br/>", "&pound;", "&amp;"), $tc);
  9.  
  10. print_r($tc);
  11. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Terms &amp; Conditions: Mandatory charge of &amp;pound;10 for cancellations.    <br/>VAT E&amp;EO