html_entity_decode 問題
require_once("../config.inc.php"); # config
require_once("../connDB.php");
require_once($pathClassLib) ."/function.common.php");
$rs = $conn->Execute("`Aboutus` 制限 1 から * を選択");
if (!$rs ) print $conn->ErrorMsg(); else print "OK!";
print $rs->fields["profile_c"];
?>
。 。 。 。 。 。
=html_entity_decode($rs->fields["profile_c"])?>
このコードの上記の出力は、profile_c のコンテンツを正しく出力できます。 , しかし、以下のhtmlになると確かに「fields["profile_c"])?>」と表示されます。専門家、何が問題なのか聞いてもいいですか?
-----解決策--------
コンピューターの PHP バージョンが 4.3.0 以降であることを確認してください。html_entity_decode 関数は PHP4.3.0 でのみ導入されました。
------解決策----------------------
マニュアルのこの関数を使ってみてください
関数 unhtmlentities($string) { $trans_tbl = get_html_translation_table(HTML_ENTITIES); $trans_tbl = array_flip($trans_tbl); strtr($string, $trans_tbl) を返します。 } <br><font color="#e78608">------解決策---------</font><br>短い書き込み、つまり php を有効にする必要があります.ini <br>short_open_tag = オン<br><br> <div class="clear"></div>