fork(10) download
  1. <?php
  2.  
  3. $smiles = array(
  4. "=)" => "happy",
  5. "=(" => "sad"
  6. );
  7. foreach($smiles as $k => &$v) {
  8. $v = sprintf('<img src="/smile/%s.gif" alt="%s">', $v, htmlspecialchars($k));
  9. }
  10.  
  11. $string = "this =) is\na test =(\n=)";
  12. $text = strtr($string, $smiles);
  13. echo $text;
  14.  
  15. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
this <img src="/smile/happy.gif" alt="=)"> is
a test <img src="/smile/sad.gif" alt="=(">
<img src="/smile/happy.gif" alt="=)">