|
|
|
สอบถามครับ htaccess rewrite url ภาษาไทย ตัดอักขระพิเศษ เช่น ตัวนี้ "ฯ" อย่างไรครับ |
|
|
|
|
|
|
|
ลองเอา function นี้ไปใช้ดูครับ
Code (PHP)
static public function slugify($text)
{
// replace non letter or digits by -
$text = preg_replace('~[^\\pL\d]+~u', '-', $text);
// trim
$text = trim($text, '-');
// transliterate
$text = iconv('utf-8', 'us-ascii//TRANSLIT', $text);
// lowercase
$text = strtolower($text);
// remove unwanted characters
$text = preg_replace('~[^-\w]+~', '', $text);
if (empty($text))
{
return 'n-a';
}
return $text;
}
|
|
|
|
|
Date :
2012-08-17 14:47:56 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|