私のコードが機能していませんか?str_replace を使用したくありません。3 つよりも多くのスラッシュが置換される可能性があるためです。preg_replace を使用してジョブを実行するにはどうすればよいですか?
私のコードは次のようになります:
<?php
$str='<li>
<span class=\"highlight\">Color</span>
Can\\\'t find the exact color shown on the model pictures? Just leave a message (eg: color as shown in the first picture...) when you place order.
Please note that colors on your computer monitor may differ slightly from actual product colors depending on your monitor settings.
</li>';
$str=preg_replace("@\\+@","\\",$str);
echo $str;