I have an html string
$html = '<div style="background-color:#000;border:1px solid #000">
<b>Some Text</b></div><span>I have amount > 1000 USD</span>';
I want to convert it to this
$html = '[div style="background-color:#000;border:1px solid #000"]
[b]Some Text[/b][/div][span]I have amount > 1000 USD[/span]';
I have searched a lot on google to get some php script to convert html to bbcode but could not find. I don't know the regex. If you give me some idea, with example code, It will give me the startup.
If it could be done with some other php function, please suggest me that.