hexdec 16진수를 10진수로 변환
로빈아빠
본문
<?
var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// 둘 다 "int(238)"을 출력합니다.
var_dump(hexdec("that")); // "int(10)"을 출력합니다.
var_dump(hexdec("a0")); // "int(160)"을 출력합니다.
?>
var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// 둘 다 "int(238)"을 출력합니다.
var_dump(hexdec("that")); // "int(10)"을 출력합니다.
var_dump(hexdec("a0")); // "int(160)"을 출력합니다.
?>
관련링크
댓글목록
등록된 댓글이 없습니다.