LucioB - 2016-09-04 14:03:02
Hi,
really appreciate your work!
I need help with a php string that I need to print in a doc file.
This string is made like this:
$myString = "The car is <i>red</red>";
Expected output should be:
The car is red (with red in italic)
Instead i get:
The car isred (with red in italic)
I've tried to replace with " " before doing $parser->parse($myString); but with no luck.
I've also tried replace "<i>" with " <i>" as well as "</i>", but once again no luck.
Could you please help me?
Thank you very much.
Keep working on this great class :)