import configparser
cp = configparser.configparser()
# 讀取配置檔案,直接讀取ini檔案內容
cp.read('12306.ini')
# 獲取ini檔案內所有的section
sections = cp.sections()
print('sections = ', sections)
# 中包含的所有變數
options = cp.options('ticket')
print('options = ', options)
# 中所有變數的取值
items = cp.items('ticket')
print('items = ', items)
# 獲取指定的section下的option
value = cp.get('ticket', 'time')
print('value = ', value)
輸出:
sections = ['login', 'ticket', 'userinfo']
options = ['from', 'to', 'time']
items = [('from', '深圳'), ('to', '成都'), ('time', '20180126')]
value = 20180126
php如何讀取ini檔案
很多時候,我們使用配置檔案來讀取配置,那麼php如何使用ini檔案呢?如下 例如將 資料庫資訊存到ini檔案中,進行讀取。header content type text html charset utf 8 讀取.init檔案 config file path config db.init 自己編...
讀取INI檔案
讀取ini檔案 ini ini new ini using system using system.text using system.runtime.interopservices namespace qf public string path 引用動態連線庫方法 dllimport kernel...
讀取ini檔案
自定義讀取ini檔案中的內容方法 鍵 值 private string contentvalue string section,string key 寫入ini檔案 節點名稱 如 typename 鍵 值 檔案路徑 dllimport kernel32 private static extern l...