2

テスト文字列:

$s = "convert this: ";
$s .= "–, —, †, ‡, •, ≤, ≥, μ, ₪, ©, ® y ™, ⅓, ⅔, ⅛, ⅜, ⅝, ⅞, ™, Ω, ℮, ∑, ⌂, ♀, ♂ ";
$s .= "but, not convert ordinary characters to entities";
4

3 に答える 3

11
$encoded = mb_convert_encoding($s, 'HTML-ENTITIES', 'UTF-8'); 

入力文字列がUTF-8であると仮定すると、これはほとんどすべてを数値エンティティにエンコードする必要があります。

于 2011-02-25T23:05:41.303 に答える
0

私はASCIIをhtmlコード化テキスト(&#xxxx)にデコードする作業をしました。https://github.com/hellonearthis/ascii2web

于 2011-02-26T09:45:16.467 に答える
0

htmlentitiesは正しく機能しません。幸いなことに、誰かがphpWebサイトにマルチバイト文字の翻訳を適切に行うように見えるコードを投稿しました

于 2011-02-25T23:03:54.903 に答える