|
|
|
ขอถามวิธีเปลี่ยน url เป็นลิ้งหน่อยครับ ว่าทำยังไงแบบพวกบอร์ดต่าง ๆ |
|
|
|
|
|
|
|
ลองไปศึกษาเรื่อง mod rewrite ดูครับกระจ่างชัว
|
|
|
|
|
Date :
2012-01-21 01:05:39 |
By :
workbythai dot com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอ่อไม่ใช่นะครับผมกดไปตามลิ้งและกระทู้บนคือ rewrite url อ่าครับแต่ผมอยากได้ไม่ใช่อันนี้นะ
มันเหมือนคำสั่ง str_replace("%body%", "black", "<body text='%body%'>");
เปลี่ยนคำว่า black ไปเป็น <body text='%body%'>
แต่ว่าถ้าเป็นลิ้ง ลิ้งมันจะไม่เหมือนกันซักอันเลย
เช่นอาจจะเป็น
https://www.thaicreate.com/topic/new-1.html
https://www.thaicreate.com/topic/new-2.html
https://www.thaicreate.com/topic/new-3.html
https://www.thaicreate.com/topic/new-4.html
https://www.thaicreate.com/topic/new-5.html
จะให้มันเปลี่ยนมาเป็นแบบนี้
<a href="https://www.thaicreate.com/topic/new-1.html">https://www.thaicreate.com/topic/new-1.html</a>
<a href="https://www.thaicreate.com/topic/new-2.html">https://www.thaicreate.com/topic/new-2.html</a>
<a href="https://www.thaicreate.com/topic/new-3.html">https://www.thaicreate.com/topic/new-3.html</a>
<a href="https://www.thaicreate.com/topic/new-4.html">https://www.thaicreate.com/topic/new-4.html</a>
<a href="https://www.thaicreate.com/topic/new-5.html">https://www.thaicreate.com/topic/new-5.html</a>
|
|
|
|
|
Date :
2012-01-21 09:14:39 |
By :
nazezaza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
function autolink($temp)
{
//link email
$temp = preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1<a href=\"mailto:\\2@\\3\"><font color=#FF6600>\\2@\\3</font></a>", $temp);
//link http://
$temp = preg_replace("#(^|[\n ])([\w]+?://[^ \"\n\r\t<]*)#is", "\\1<a href=\"\\2\" target=\"_blank\"><font color=#FF6600>\\2</font></a>", $temp);
//link www.
$temp = preg_replace("#(^|[\n ])((www|ftp)\.[^ \"\t\n\r<]*)#is", "\\1<a href=\"http://\\2\" target=\"_blank\"><font color=#FF6600>\\2</font></a>", $temp);
return ( $temp ) ;
}
Go to : PHP Autolink อยากได้ครับ เวลาโพสข้อความลงในเว็บบอร์ด ข้อความที่มี link อยากให้มันใส่ Tag
|
|
|
|
|
Date :
2012-01-21 09:25:22 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2012-01-21 09:43:52 |
By :
nazezaza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|