ncrdecode_lib
Proto type
string ncrdecode_lib (string str)
Description
ncrdecode_lib() 함수는 16 진수 NCR code 로 되어있는 문자를 CP949 테이블로 변환을 한다.
Arguments
(strint) str - input string
Example
<?php
$a = "한글a 와 똠방각하";
$a = ncrencode_lib ($a);
# print "한글a 와 똠방각하"
echo ncrdecode_lib ($a);
?>
See also
Last updated
Was this helpful?