Looks like you have magic quotes turned on. Use below condition using stripslashes
with whatever text you want to process:
if(get_magic_quotes_gpc())
{
$your_text = stripslashes($your_text);
}
Now you can process $your_text
variable normally.
Update:
Magic quotes are exaplained here. For well written code there is normally no harm in disabling it.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…