Skip to content

Instantly share code, notes, and snippets.

@richard4339
Created March 24, 2012 17:03
Show Gist options
  • Save richard4339/2185163 to your computer and use it in GitHub Desktop.
Save richard4339/2185163 to your computer and use it in GitHub Desktop.
str_replace
<?php
$text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
print str_ireplace(array('lorem','ipsum'),array('<div>lorem</div>','<div>ipsum</div>'), $text);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment