|
|
|
ช่วยแนะนำหลักการเขียน url ภาษาไทย เหมือน Slug ของ wordpress หรือ Joomla |
|
|
|
|
|
|
|
mod rewrite
|
|
|
|
|
Date :
2011-09-08 09:41:30 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครับ
แบบที่คุณเข้าใจอ่ะถูกแล้ว
|
|
|
|
|
Date :
2011-09-08 10:12:26 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
function slug($str)
{
$str = strtolower(trim($str));
$str = preg_replace('/[^a-z0-9-]/', '-', $str);
$str = preg_replace('/-+/', "-", $str);
return $str;
}
echo slug("Welcome to thaicreate.com");
|
|
|
|
|
Date :
2011-09-08 16:12:36 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|