2010年1月11日 星期一

[JavaScript] Javascript 的 URL 函數編碼,與 PHP 對應解碼函數

Javascript 的 URL 函數編碼,與 PHP 對應解碼函數

單向
Javascript:   escape() 等於 PHP: rawurlencode()
Javascript:   unescape() 等於 PHP: rawurldecode()


雙向
Javascript:   encodeURI() 相對於 PHP: rawurlencode()
Javascript:   decodeURI() 相對於 PHP: rawurldecode()

[PHP] 取得圖片寬高尺寸

PHP 函式

getimagesizeGet the size of an image
Note: This function does not require the GD image library.
(Server 必須要安裝 GD 函式庫)


呼叫方式:

array getimagesize ( string $filename [, array &$imageinfo ] )


傳回結果:
Array
(
    [0] => 450
    [1] => 803
    [2] => 2
    [3] => width="450" height="803"
    [bits] => 8
    [channels] => 3
    [mime] => image/jpeg
)