You are here: 首頁

飛朵啦學習手札

本網站建議使用Firefox2.0以上,或是使用Goole瀏覽器來瀏覽,並使用1024x768解析度來觀看.

JA slide show

新聞公告

歡迎來到飛朵啦學習手札

12

[轉]Tomcat Post / Get 中文編碼處理方法 (中文亂碼問題)

E-mail 列印 PDF

轉貼自:http://minchuanwang.blogspot.tw/2009/03/tomcat-post-get.html

 

最近在把原本佈署在 Resin 的 Java Web Application移植到 Tomcat 時,有許多原本正常的中文get / post 功能,都變的異常,只要是透過 get / post 得到的資料,就會變亂碼

剛好也驗證了 Resin 在Character Encoding的部分做的較好
而看看網路上大家的問題,也可以知道 Tomcat 在編碼處理的部分 真是讓很多人頭痛

主要的原因是,TOMCAT 預設都是用 ISO-8859-1 的編碼方式來傳遞資訊

這個問題,可以解決的方式整理如下:

最近更新 ( 週三, 12 三月 2014 16:38 )
 
 
19

[轉]PHP 陣列排序

E-mail 列印 PDF

有時候會用到陣列的排序,這邊做個mark

主要轉自:http://www.kikinote.com/article/699.html

同時也可以參考:http://tw2.php.net/manual/en/function.asort.php

 

在這裡介紹所有PHP排序陣列的功能

  1. sort:排序「值」,從小到大 (Sort an array)
    1. $tempArray = array(5,8,1,2,7,6,3,4);
    2. sort($tempArray);
    3. #結果會是 1 2 3 4 5 6 7 8
  2. rsort:排序「值」,從大到小 (Sort an array in reverse order)
最近更新 ( 週三, 19 二月 2014 12:44 )
 
 
17

[轉]PHP 產出CSS壓縮檔案

E-mail 列印 PDF

轉貼自: http://dzone.com/snippets/php-function-optimize-css-file

透過此 function 可在吐 CSS 時, 或者在版本 Release 時, 自動壓縮

 

<?php
/**
* Converts a CSS-file contents into one string
* Source Code: http://snippets.dzone.com/posts/show/4137
* @Author: Dmitry-Sh http://snippets.dzone.com/user/Dmitry-Sh
*
* @param    string  $t Text data
* @param    int     $is_debug Skip convertion
* @return   string  Optimized string
*/
function text_smooth_css($t, $is_debug = 0)
{
if (
$is_debug) {
return
$t;
}

/* Remove comments */
$t = preg_replace("/\/\*(.*?)\*\//s", ' ', $t);

/* Remove new lines, spaces */
$t = preg_replace("/(\s{2,}|[\r\n|\n|\t|\r])/", ' ', $t);

/* Join rules */
$t = preg_replace('/([,|;|:|{|}]) /', '\\1', $t);
$t = str_replace(' {', '{', $t);

/* Remove ; for the last attribute */
$t = str_replace(';}', '}', $t);
$t = str_replace(' }', '}', $t);

return
$t;
}
?>

 
更多文章...
第 14 頁, 共 51 頁