Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function link_words( $text ) {
  2. $replace = array(
  3. 'parola' => '<a href="#">parola</a>',
  4. );
  5. $text = str_replace( array_keys($replace), $replace, $text );
  6. return $text;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement