- เครดิต
- 5479
- เพื่อน
- ทักทาย
- บล็อก
- อัลบั้ม
- โพสต์
- กระทู้
- แชร์
- สำคัญ
- สิทธิ์อ่าน
- 200
- จำนวนผู้ติดตาม
- จำนวนผู้กำลังติดตาม
- เพศ
- ไม่บอก
|
uc_server\images\locale.xml
- <language type="zh_CN" using="false">
คัดลอกไปที่คลิปบอร์ด แก้เป็น
- <language type="la_LA" using="true">
คัดลอกไปที่คลิปบอร์ด
โดยแปลงให้เป็นข้อความ \uxxxx ด้วย PHP Function นี้
- <?php
- header('Content-Type: text/html; charset=UTF-8');
- function udecode($str) {
- return html_entity_decode(
- preg_replace('/\\\\u([a-f0-9]{4})/i', '&#x$1;', $str),
- ENT_QUOTES, 'UTF-8'
- );
- }
- $in = isset($_POST['in']) ? trim($_POST['in']) : '';
- $out = udecode($in);
- ?>
- <html>
- <head>
- <script>
- </script>
- </head>
- <body>
- <h1 style="text-align: center;">Decode \uXXXX-encoded strings</h1>
- <div style="text-align: center;">by Valery Votintsev, <a href="http://codersclub.org/discuzx/">codersclub.org</a>
- <br>
- <br>
- <table width="90%" align="center">
- <form method="post">
- <tr>
- <td>
- Enter encoded text here:
- <br>
- <textarea name="in" style="width:100%;" rows="10"><?php echo $in; ?></textarea>
- </td>
- <td>
- Decoded text:
- <br>
- <textarea style="width:100%;" rows="10" readonly><?php echo $out; ?></textarea>
- </td>
- </tr>
- <tr>
- <td align="center">
- <input type="submit" value=" Decode this! ">
- </td>
- <td>
-
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
คัดลอกไปที่คลิปบอร์ด Cr. codersclub.org
|
|