|
|
|
PHP มีฟังก์ชั่น เปลี่ยน ข้อความ เป็นเลขฐาน2ไหม เเล้วก็ ฟังก์ชั่นเปลี่ยนเลขฐาน2เป็นตัวอักษร |
|
|
|
|
|
|
|
Code (PHP)
$s = "\t";
echo ord($s); //9
echo '<br>',sprintf('%08s',decbin(ord($s))); //00001001
echo '<br>',sprintf('%08b',ord($s)); //00001001
//แปลง binary เป็น string
$b = '01100001';
echo sprintf('%c',bindec($b));
|
ประวัติการแก้ไข 2013-12-15 16:29:46 2013-12-15 16:33:13
|
|
|
|
Date :
2013-12-15 16:28:05 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|