PHPを使用してこの形式で文字列を保存および取得する方法と、次のコードを試しました。
$description="Welcome to our "world". Some text here! Some text'here!.";
$description = mysql_real_escape_string($description);
$description = preg_replace("/&[a-z]+;/i"," ",$description);
$description
データベースに値を保存および取得するために同じ変数を使用しています。私のコードでは、一重引用符を出力しません。
出力を取得する必要があります:
Welcome to our "world". Some text here! Some text'here!.
ありがとう。