Im는 사이트의 imdb 데이터 스크레이퍼에서 작업하고 있으며 나는 전에 보지 못한 이상한 인코딩으로 모든 것을 인코딩 한 것 같습니다.이 인코딩은 무엇이며 ... PHP에서 어떻게 이스케이프합니까?
<a href="/keyword/exploding-ship/">Exploding Ship</a>
A Bug's Life
일반 문자로 변환 할 수있는 PHP 함수가 있습니까?
Im는 사이트의 imdb 데이터 스크레이퍼에서 작업하고 있으며 나는 전에 보지 못한 이상한 인코딩으로 모든 것을 인코딩 한 것 같습니다.이 인코딩은 무엇이며 ... PHP에서 어떻게 이스케이프합니까?
<a href="/keyword/exploding-ship/">Exploding Ship</a>
A Bug's Life
일반 문자로 변환 할 수있는 PHP 함수가 있습니까?
이들은 SGML 문자 이스케이프입니다. 십진수 ('
) 또는 16 진수 ( 
) 일 수 있으며 직접 유니 코드 코드 포인트를 참조하십시오.
html_entity_decode()은 PHP 5에서 작동해야합니다. 지금은 테스트 할 수 없지만. 해당 참조 페이지의 첫 번째 코멘트에서
은, 다음의 코드는 이전의 PHP 버전에 대해 주어진다 :이 인코딩되지// 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);
}
를 시도? –