2011年11月27日 星期日

[JS] 自動判斷網頁並翻譯







2011年11月13日 星期日

[PHP] 純網址轉換成可點擊的Link


最近在嘗試將資料庫讀取出的純網址透過Php轉換成可點擊的Link,在網路找到一個有用的function, 與大家共享!!


$string = 'I have some texts here and also links such as http://www.youtube.com , www.haha.com and lol@example.com. They are ready to be replaced.';
 
echo make_clickable($string);
 
function _make_url_clickable_cb($matches) {
    $ret = '';
    $url = $matches[2];
  
    if ( empty($url) )
        return $matches[0];
    // removed trailing [.,;:] from URL
    if ( in_array(substr($url, -1), array('.', ',', ';', ':')) === true ) {
        $ret = substr($url, -1);
        $url = substr($url, 0, strlen($url)-1);
    }
    return $matches[1] . "$url" . $ret;
}
  
function _make_web_ftp_clickable_cb($matches) {
    $ret = '';
    $dest = $matches[2];
    $dest = 'http://' . $dest;
  
    if ( empty($dest) )
        return $matches[0];
    // removed trailing [,;:] from URL
    if ( in_array(substr($dest, -1), array('.', ',', ';', ':')) === true ) {
        $ret = substr($dest, -1);
        $dest = substr($dest, 0, strlen($dest)-1);
    }
    return $matches[1] . "$dest" . $ret;
}
  
function _make_email_clickable_cb($matches) {
    $email = $matches[2] . '@' . $matches[3];
    return $matches[1] . "$email";
}
  
function make_clickable($ret) {
    $ret = ' ' . $ret;
    // in testing, using arrays here was found to be faster
    $ret = preg_replace_callback('#([\s>])([\w]+?://[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is', '_make_url_clickable_cb', $ret);
    $ret = preg_replace_callback('#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is', '_make_web_ftp_clickable_cb', $ret);
    $ret = preg_replace_callback('#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret);
  
    // this one is not in an array because we need it to run last, for cleanup of accidental links within links
    $ret = preg_replace("#(]+?>|>))]+?>([^>]+?)#i", "$1$3", $ret);
    $ret = trim($ret);
    return $ret;
}



From: http://zenverse.net/php-function-to-auto-convert-url-into-hyperlink/

2011年11月7日 星期一

[JS] Ajax 傳遞參數加號或問號變成空格的解決方法


在使用ajax傳遞參數時, 如果數據存在著加號(+)或是連接符(&), 服務器接收時會轉成空白

以下提供解決的方案, 可透過正則進行編碼替換, 即可解決此問題.





2011年11月3日 星期四

[JS] Javascript 接收網址並轉頁


工作上遇到同事問及如何在靜態網頁接收參數然後轉頁

當下查了 一下資料, 並實作了簡單的功能, 與大家分享!!






Related Posts Plugin for WordPress, Blogger...