說明:
1、人大影印資料的處理是本人自己使用的一套程式,因為看到論壇上有關於全文檢索的討論所以就不顧程式設計水平的菜鳥級差,也將其公布於公。
2、人大影印全文光碟資料在各大學圖書館應該可以取得。
######config.php3
$hostname = "localhost";
$dbusername = "";
$dbname='';
$dbpassword = "";
function indexfile($index_file,$index_title,$index_describe="")
elseif(file_exists($index_file))
$fp_i=fopen($index_file,'w+');
fputs($fp_i, "$index_titlern");
fputs($fp_i, "$index_titlern");
//$dte_created=date('y-m-d h:i:s');
fputs($fp_i, &程式設計客棧quot;$index_describe");
//查詢日期:$dte_createdrn");
//fputs($fp_i,"rn");
return $fp_i;
} function mysql_error_exit($msg)
function xueroom_error_exit($msg,$page)
function xueroom_message($msg)
?>
#################### 資料庫結構:
create table artical (
artical_id int(6) not null auto_increment,
resource_id varchar(10) not null,
origin_periodical varchar(60) binary not null,
date_pub datetime default '0000-00-00 00:00:00' not null,
artical_authobtjeiqar varchar(50) binary not null,
artical_title varchar(100) binary not null,
artical_data longblob not null,
artical_type varchar(6),
artical__size varchar(10),
date_reprinted datetime default '0000-00-00 00:00:00' not null,
read_count int(10) default '0' not null,
catalog tinyint(4) unsigned default '0' not null,
primary key (artical_id),
key artical_title (artical_title),
key artical_author (artical_author),
key origin_periodical (origin_periodical),
key catalog (catalog),
key resource_id (resource_id)
);
本文標題: 人大影印資料處理程式_補充篇
本文位址: /wangluo/php/21538.html
點讚打賞
分享如果認為本文對您有所幫助請贊助本站
宣告:凡註明"本站原創"的所有文字等資料,版權均屬程式設計客棧所有,歡迎**,但務請註明出處。
標籤:|人大|大復|影印|印資|資料|料處|處理|理程|程式|序_|_補|補充|充篇|篇|
用php連線oracle for nt 遠端資料庫社群(php&&mysql)二
您可能感興趣的文章:
廣告贊助
廣告贊助
最新發布
全站最新
廣而告之
© 2018-2021 程式設計客棧 贛icp備17006162號-9
贛公網安備 36110202000251號
top
資料處理操作補充
初始的train和test 可以通過data pd.concat train,test ignore index true,sort false 進行合併,為後面處理會簡化 後期的拆開 train data.loc data source train test data.loc data sourc...
海量資料處理 高階程式設計師之海量資料處理
何謂海量資料處理?所謂海量資料處理,無非就是基於海量資料上的儲存 處理 操作。何謂海量,就是資料量太大,所以導致要麼是無法在較短時間內迅速解決,要麼是資料太大,導致無法一次性裝入記憶體。那解決辦法呢?針對時間,我們可以採用巧妙的演算法搭配合適的資料結構,如bloom filter hash bit ...
Python資料處理筆記 numpy篇(一)
import numpy as np np中不同資料的輸入方式 np.array object object 是乙個array like,比如list,range 1,2,3 的型別是list range 3 的型別是range 但是np.array 1,2,3 和np.array range 3 ...