Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP – mb_detect_order()를 사용하여 문자 인코딩 감지 순서를 설정하는 방법은 무엇입니까?


mb_detect_order() PHP의 함수를 사용하여 순서대로 문자 인코딩 감지를 설정/가져올 수 있습니다. 이 기능은 PHP 4.2.0 이상 버전에서 지원됩니다.

구문

array|bool mb_detect_order(str $encoding)

매개변수

mb_detect_order() $encoding 매개변수 하나만 허용 문자열 포함 , 배열부울 .

  • $encoding− 이 인코딩 매개변수는 배열 또는 쉼표로 구분된 문자 인코딩 목록입니다. 생략되거나 null이면 현재 문자 인코딩 감지 순서를 배열로 반환합니다.

반환 값

인코딩 감지 순서 설정 시 성공 시 True, 실패 시 False를 반환합니다.

예시

<?php
   // Set detection order by enumerated list
   mb_detect_order("eucjp-win,sjis-win,UTF-8");

   // Set detection order by array
   $array[] = "ASCII";
   $array[] = "JIS";
   $array[] = "EUC-JP";
   mb_detect_order($array);

   // It shows the current detection order
   echo implode(", ", mb_detect_order());
?>

출력

ASCII, JIS, EUC-JP