03 2012 档案
摘要:框架写的太久,没注释,用的时候有的需要回去重看一遍。E:\htdocs\controller\Twt.php 1 <?php 2 class C_Twt 3 { 4 public function movie() 5 { 6 $uriLogin = 'http://www.twt.edu.cn/movie/logincp.php'; 7 $uriDetail = 'http://www.twt.edu.cn/movie/?/detail_id-%d.htm'; 8 $uriDownload = 'http://www.twt.ed...
阅读全文
摘要:文件读取写入,正则,没啥含量。#!e:/python32/python.exeimport osimport repat = r'(.*)\.chs\.srt'for f in os.listdir(): m = re.match(pat, f) if not m: continue ff = m.group(1) fop = open(ff + '.all.srt', 'w') linesChs = open(ff + '.chs.srt').readlines() linesEng = open(ff + '.eng.
阅读全文