PHP แปลงเลขเป็นภาษาไทย


Example

<!DOCTYPE html>
<html>
    <head>
        <title>แปลงเลขเป็นภาษาไทย</title>
        <meta charset="UTF-8">
    </head>
    <body>
        <?php
        $textThai = array("ศูนย์", "หนึ่ง", "สอง", "สาม", "สี่", "ห้า", "หก", "เจ็ด", "แปด", "เก้า");
        $mobile = "0809198053";
        $textPrint = "";
        for ($i = 0; $i < strlen($mobile); $i++) {
            $textPrint = $textPrint . $textThai[$mobile[$i]];
        }
        echo $textPrint;
        ?>
    </body>
</html>


ไม่มีความคิดเห็น:

แสดงความคิดเห็น