Variable handling 함수 목록
PHP Manual

is_unicode

(PHP 6 >= 6.0.0)

is_unicodeFinds whether a variable is a unicode string

설명

bool is_unicode ( mixed $var )

Finds whether the given variable is a unicode string.

인수

var

The variable being evaluated.

반환값

Returns TRUE if var is a unicode string, FALSE otherwise.

예제

Example #1 is_unicode() example

<?php
// Declare a unicode string
$unicode 'This is a unicode string';

// Declare a binary string
$binary b'This is a binary string';

var_dump(is_unicode($unicode), is_unicode($binary));
?>

위 예제의 출력:

bool(true)
bool(false)

참고


Variable handling 함수 목록
PHP Manual