Computer >> Máy Tính >  >> Lập trình >> PHP

Hàm IntlChar getFC_NFKC_Closure () trong PHP

Hàm IntlChar getFC_NFKC_Closure () được sử dụng để lấy thuộc tính FC_NFKC_Closure cho giá trị val.

Cú pháp

IntlChar::getFC_NFKC_Closure(val)

Tham số

  • val - Một số nguyên hoặc ký tự được mã hóa dưới dạng chuỗi UTF-8.

Quay lại

Hàm IntlChar getFC_NFKC_Closure () trả về chuỗi thuộc tính FC_NFKC_Closure cho giá trị đã nhập là val.

Ví dụ

Sau đây là một ví dụ -

<?php
   // Input data is string type
   var_dump(IntlChar::getFC_NFKC_Closure("p{34}"));
   echo "<br>";
   // Input data is character type
   var_dump(IntlChar::getFC_NFKC_Closure(" "));
   echo "<br>";
   // Input data is unicode character type
   var_dump(IntlChar::getFC_NFKC_Closure("u{220}"));
   echo "<br>";
   // Input data is string type
   var_dump(IntlChar::getFC_NFKC_Closure("XYZ"));
?>

Đầu ra

Sau đây là kết quả -

NULL
string(0) ""
NULL
NULL