1 頁 (共 1 頁)

簡化過長網址

發表於 : 2006-06-17 , 21:42
懸壺子
簡化過長網址 :
http://www.phpbb.com/phpBB/viewtopic.php?t=131079

Example:
http://yourdomain.com/yourfolder/nextfo ... ument.html


to
http://yourdomain.com/yourfolder/nextfo...ument.html


open /includes/bbcode.php

find

代碼: 選擇全部

 return($ret); 
add before:

代碼: 選擇全部

$ret = preg_replace("/<a>(.*?)</a>/ie", "(strlen("2") > 55 && !eregi("<", "2") ) ? '<a href='.stripslashes("1").'>'.substr("2", 0, 39) . '...' . substr("2", -10).'</a>' : '<a href='.stripslashes("1").'>'."2".'</a>'", $ret); 
Save and upload file - DONE

Re: 簡化過長網址

發表於 : 2006-06-17 , 22:28
懸壺子

Re: 簡化過長網址

發表於 : 2006-06-17 , 22:28
懸壺子