Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. $words = array(
  4. 'omg' => 'Oh my god',
  5. 'BRB' => 'Be right back'
  6. );
  7.  
  8. require 'Hz/Filter/Acronym.php';
  9. $filter = new Hz_Filter_Acronym($words);
  10.  
  11. echo $filter->filter("OMG no you didn't! brb..");
  12. // output: "<acronym title="Oh my god">OMG<acronym> no you didn't! <acronym title="Be right back">brb<acronym>.."
Add Comment
Please, Sign In to add comment