|
|
|
กำหนดจำนวนตัวอักษร ที่ เรียนออกมาดูโดยใช้ฟังชั่น echo substr(); ภาษาไทยมันขึ้นไม่ครบคับ มีตัวอย่างคับ |
|
|
|
|
|
|
|
ลองใช้ mb_substr แทนครับ
ref mb_substr
|
|
|
|
|
Date :
2013-01-16 12:10:57 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mb_substr()
<?php
function substr_unicode($str, $s, $l = null) {
return join("", array_slice(
preg_split("//u", $str, -1, PREG_SPLIT_NO_EMPTY), $s, $l));
}
$str = "Büyük";
$s = 0; // start from "0" (nth) char
$l = 3; // get "3" chars
echo substr($str, $s, $l) ."\n"; // Bü
echo mb_substr($str, $s, $l) ."\n"; // Bü
echo substr_unicode($str, $s, $l); // Büy
?>
|
|
|
|
|
Date :
2013-01-16 12:15:18 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-01-16 12:19:56 |
By :
pokultra |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
header('Content-Type: text/html; charset=utf-8'); เพิ่มเข้าไปไว้ด้านบนของหน้า
|
|
|
|
|
Date :
2013-01-16 14:01:48 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มเเล้วคับ
|
|
|
|
|
Date :
2013-01-16 14:30:09 |
By :
เอ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่หาย
|
|
|
|
|
Date :
2013-01-16 14:30:30 |
By :
เอ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|