<?php
$db_str = "Show me some <3 right now. It is raining
today [umbr], that gives me peace [peace].";
echo $db_str;
echo "<hr />";
$chars = array("<3", "[peace]", "[umbr]");
$icons = array("❤", "☮", "☂");
$new_str = str_replace($chars,$icons,$db_str);
echo $new_str;
?>
Online Demo
$db_str = "Show me some <3 right now. It is raining
today [umbr], that gives me peace [peace].";
echo $db_str;
echo "<hr />";
$chars = array("<3", "[peace]", "[umbr]");
$icons = array("❤", "☮", "☂");
$new_str = str_replace($chars,$icons,$db_str);
echo $new_str;
?>
Online Demo
No comments:
Post a Comment
Thank your for your comment..your submitted coment will be live after admin approval