XML Helper

XML 헬퍼는 XML 데이터를 다루는데 필요한 함수를 제공합니다.

헬퍼 로딩 Loading this Helper

헬퍼는 아래와 같이 로드합니다.

$this->load->helper('xml');

사용 가능한 함수들 Available Functions

아래의 함수들이 사용 가능합니다:

xml_convert($str[, $protect_all = FALSE])
인수:
  • $str (string) – the text string to convert
  • $protect_all (bool) – Whether to protect all content that looks like a potential entity instead of just numbered entities, e.g. &foo;
반환값:

XML-converted string

반환형:

문자열

문자열을 입력받아 다음의 예약된 XML 문자들을 엔티티(entities)로 변환합니다:

  • 앰퍼센드: &
  • 작다, 크다는 기호: < >
  • 작은 따옴표, 큰 따옴표: ‘ “
  • 대쉬: -

엔티티의 일부로서 존재하는 엠퍼센드는 무시합니다, e.g. &#123;. 예제:

$string = '<p>Here is a paragraph & an entity (&#123;).</p>';
$string = xml_convert($string);
echo $string;

결과:

&lt;p&gt;Here is a paragraph &amp; an entity (&#123;).&lt;/p&gt;