I have the following text ann-ball-is-good-ok seperated by hyphen. I need to replace those hyphen and surround each text within div tags as per result sample below
<div class='cssx'>ann</div>
<div class='cssx'>ball</div>
<div class='cssx'>is</div>
<div class='cssx'>good</div>
<div class='cssx'>ok</div>
I have tried using str_replace()
function but cannot get it to work
<?php
$str ="ann-ball-is-good-ok";
echo $output = str_replace('-', "<div class='cssx'></div>", $str);
?>
2
Answers
You are almost there: