php5.2 預設是有 json 的,但我的ubuntu 9.10上沒有。
2. 解壓,進入目錄。
3. 編譯前要初始化php環境:
phpize
如果提示找不到該命令,就 apt-get install php5-dev 安裝它。
4. 編譯json
sudo ./configure
sudo make
5. 安裝
iltaek@iltaek-desktop:~/php-json-ext-1.2.1$ sudo make install
installing shared extensions: /usr/lib/php5/20060613+lfs/ (庫檔案生成位置。 我的 extension_dir 就是 /usr/lib/php5/20060613+lfs )
6. 修改php.ini
在php.ini 中加入 extension=php_json.so:
sudo vi /etc/php5/apache2/php.ini
7. 重啟阿帕奇
sudo /etc/init.d/apache2 restart
8. 小試: test_json.php
<?php$arr = array
( 'name' => 'jinrize',
'nike' => 'rize',
'contact' => array
( 'email' => 'iltaek at hotmail dot com',
'website' => '',)
);$json_string = json_encode($arr
);echo
$json_string
;?>
批量解壓原始碼包
如果壓縮包太多,乙個乙個解壓縮實在太麻煩,那麼我們寫乙個小的 shell 指令碼,批量進行解壓縮。命令如下 root localhost vi tar.sh 建立解壓縮指令碼 bin bash 標稱是 shell指令碼 cd usr local src 進入儲存原始碼包的目錄 ls tar.gz u...
C 壓縮與解壓檔案原始碼
獲得壓縮的資料夾 壓縮資料夾的名字 string name file rar 壓縮檔案的流物件 messagebox.show name zipoutputstream output new zipoutputstream file.create name output.setlevel 6 str...
《原始碼閱讀》原始碼閱讀技巧,原始碼閱讀工具
檢視某個類的完整繼承關係 選中類的名稱,然後按f4 quick type hierarchy quick type hierarchy可以顯示出類的繼承結構,包括它的父類和子類 supertype hierarchy supertype hierarchy可以顯示出類的繼承和實現結構,包括它的父類和...