This is my html code:
<div style="box-sizing: border-box;
color: rgb(37, 37, 37);
font-family: Axiforma-Regular;
font-size: 16px;">
</div>
I want to replace these inline css double quote with single quote.
I tried this:
$display_box_content = '<div style="box-sizing: border-box;
color: rgb(37, 37, 37);
font-family: Axiforma-Regular;
font-size: 16px;">
</div>'
$display_box_content = str_replace('"', "'", $display_box_content);
but these does not work.
Please help!