こんにちは多分、自動的にPHP test.txt
にファイルの名前を変更しようとしてwampserver 2を使用していますがコードして.htmlファイルのためのもの。
使用htmlentitydecode();
<?php
$orig = "I'll \"walk\" the <b>dog</b> now";
$a = htmlentities($orig);
$b = html_entity_decode($a);
echo $a; // I'll "walk" the <b>dog</b> now
echo $b; // I'll "walk" the <b>dog</b> now
// For users prior to PHP 4.3.0 you may do this:
function unhtmlentities($string)
{
// replace numeric entities
$string = preg_replace('~&#x([0-9a-f]+);~ei', 'chr(hexdec("\\1"))', $string);
$string = preg_replace('~&#([0-9]+);~e', 'chr("\\1")', $string);
// replace literal entities
$trans_tbl = get_html_translation_table(HTML_ENTITIES);
$trans_tbl = array_flip($trans_tbl);
return strtr($string, $trans_tbl);
}
$c = unhtmlentities($a);
echo $c; // I'll "walk" the <b>dog</b> now
?>
出典
2011-10-06 19:24:40
Mob
たぶん、あなたは私たちにあなたが取得しようとしているテキストの一部を与えることができます。 –
私はあなたのコードをtryedして、それは大丈夫と思われる例のtest.htmlファイルを追加する –
私にとって、関数は "<" charを返します。あなたは本当にあなたが見ているものをより明示することができますか?ストリングをエコーすると、これが見えますか? < div <テスト</div < –