functions.php 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015
  1. <?php
  2. $editor=1;
  3. //字符过滤
  4. function escape_str($str){
  5. global $public_r;
  6. if($public_r['bakescapetype']==2)//real_escape_string
  7. {
  8. $str=escape_dbstr($str);
  9. }
  10. else//addslashes
  11. {
  12. $str=escape_addsstr($str);
  13. }
  14. return $str;
  15. }
  16. //字符过虑(addslashes)
  17. function escape_addsstr($str){
  18. $str=addslashes($str);
  19. $str=str_replace('\\\'','\'\'',$str);
  20. $str=str_replace("\\\\","\\\\\\\\",$str);
  21. $str=str_replace('$','\$',$str);
  22. return $str;
  23. }
  24. //字符过虑(db)
  25. function escape_dbstr($str){
  26. global $empire,$dbtbpre,$public_r;
  27. $str=$empire->EDbEscapeStr($str);
  28. $str=str_replace('\\\'','\'\'',$str);
  29. $str=str_replace("\\\\","\\\\\\\\",$str);
  30. $str=str_replace('$','\$',$str);
  31. return $str;
  32. }
  33. //修复表
  34. function Ebak_Rep($tablename,$dbname,$userid,$username){
  35. global $empire,$ecms_config;
  36. //验证权限
  37. CheckLevel($userid,$username,$classid,"dbdata");
  38. $dbname=RepPostVar($dbname);
  39. $empire->usequery("use `$dbname`");
  40. $count=count($tablename);
  41. if(empty($count))
  42. {printerror("MustChangeOneTable","history.go(-1)");}
  43. for($i=0;$i<$count;$i++)
  44. {
  45. //$sql1=$empire->query("OPTIMIZE TABLE `$tablename[$i]`;");
  46. //$sql2=$empire->query("CHECK TABLE `$tablename[$i]`;");
  47. //$sql3=$empire->query("ANALYZE TABLE `$tablename[$i]`;");
  48. $sql4=$empire->query("REPAIR TABLE `$tablename[$i]`;");
  49. }
  50. $empire->usequery("use `".$ecms_config['db']['dbname']."`");
  51. //操作日志
  52. insert_dolog("dbname=".$dbname);
  53. printerror("RepireTableSuccess","ChangeTable.php?mydbname=$dbname".hReturnEcmsHashStrHref2(0));
  54. }
  55. //优化表
  56. function Ebak_Opi($tablename,$dbname,$userid,$username){
  57. global $empire,$ecms_config;
  58. //验证权限
  59. CheckLevel($userid,$username,$classid,"dbdata");
  60. $dbname=RepPostVar($dbname);
  61. $empire->usequery("use `$dbname`");
  62. $count=count($tablename);
  63. if(empty($count))
  64. {printerror("MustChangeOneTable","history.go(-1)");}
  65. for($i=0;$i<$count;$i++)
  66. {
  67. $sql1=$empire->query("OPTIMIZE TABLE `$tablename[$i]`;");
  68. }
  69. $empire->usequery("use `".$ecms_config['db']['dbname']."`");
  70. //操作日志
  71. insert_dolog("dbname=".$dbname);
  72. printerror("OptimTableSuccess","ChangeTable.php?mydbname=$dbname".hReturnEcmsHashStrHref2(0));
  73. }
  74. //删除数据表
  75. function Ebak_Drop($tablename,$dbname,$userid,$username){
  76. global $empire,$ecms_config;
  77. //验证权限
  78. CheckLevel($userid,$username,$classid,"dbdata");
  79. $dbname=RepPostVar($dbname);
  80. $empire->usequery("use `$dbname`");
  81. $count=count($tablename);
  82. if(empty($count))
  83. {printerror("MustChangeOneDelTable","history.go(-1)");}
  84. $a="";
  85. $first=1;
  86. for($i=0;$i<$count;$i++)
  87. {
  88. if(empty($first))
  89. {
  90. $a.=",";
  91. }
  92. else
  93. {
  94. $first=0;
  95. }
  96. $a.="`".$tablename[$i]."`";
  97. }
  98. $sql1=$empire->query("DROP TABLE IF EXISTS ".$a.";");
  99. $empire->usequery("use `".$ecms_config['db']['dbname']."`");
  100. //操作日志
  101. insert_dolog("dbname=".$dbname);
  102. printerror("DelTableSuccess","ChangeTable.php?mydbname=$dbname".hReturnEcmsHashStrHref2(0));
  103. }
  104. //删除数据库
  105. function Ebak_DropDb($dbname,$userid,$username){
  106. global $empire;
  107. //验证权限
  108. CheckLevel($userid,$username,$classid,"dbdata");
  109. $dbname=RepPostVar($dbname);
  110. if(empty($dbname))
  111. {printerror("ChangeDropDb","history.go(-1)");}
  112. $sql=$empire->query("DROP DATABASE `$dbname`");
  113. if($sql)
  114. {
  115. //操作日志
  116. insert_dolog("dbname=".$dbname);
  117. printerror("DropDbSuccess","ChangeDb.php".hReturnEcmsHashStrHref2(1));
  118. }
  119. else
  120. {printerror("DbError","history.go(-1)");}
  121. }
  122. //建立数据库
  123. function Ebak_CreatDb($dbname,$dbchar,$userid,$username){
  124. global $empire,$ecms_config;
  125. //验证权限
  126. CheckLevel($userid,$username,$classid,"dbdata");
  127. $dbname=RepPostVar($dbname);
  128. if(!trim($dbname)){
  129. printerror("EmptyDbname","history.go(-1)");
  130. }
  131. $a="";
  132. if($dbchar&&$ecms_config['db']['dbver']>='4.1'){
  133. $a=" DEFAULT CHARACTER SET ".$dbchar;
  134. }
  135. $sql=$empire->query("CREATE DATABASE IF NOT EXISTS `$dbname`".$a);
  136. if($sql){
  137. //操作日志
  138. insert_dolog("dbname=".$dbname);
  139. printerror("AddDbSuccess","ChangeDb.php".hReturnEcmsHashStrHref2(1));
  140. }
  141. else
  142. {printerror("DbError","history.go(-1)");}
  143. }
  144. //清空表
  145. function Ebak_EmptyTable($tablename,$dbname,$userid,$username){
  146. global $empire,$ecms_config;
  147. //验证权限
  148. CheckLevel($userid,$username,$classid,"dbdata");
  149. $dbname=RepPostVar($dbname);
  150. $empire->usequery("use `$dbname`");
  151. $count=count($tablename);
  152. if(empty($count))
  153. {printerror("MustChangeOneTable","history.go(-1)");}
  154. for($i=0;$i<$count;$i++)
  155. {
  156. $sql1=$empire->query("TRUNCATE `".$tablename[$i]."`;");
  157. }
  158. $empire->usequery("use `".$ecms_config['db']['dbname']."`");
  159. //操作日志
  160. insert_dolog("dbname=".$dbname);
  161. printerror("EmptyTableSuccess","ChangeTable.php?mydbname=$dbname".hReturnEcmsHashStrHref2(0));
  162. }
  163. //---------------------------备份
  164. //初使化备份
  165. function Ebak_DoEbak($add,$userid,$username){
  166. global $empire,$public_r,$fun_r,$ecms_config;
  167. //验证权限
  168. CheckLevel($userid,$username,$classid,"dbdata");
  169. $dbname=RepPostVar($add['mydbname']);
  170. if(empty($dbname)){
  171. printerror("NotChangeDbname","history.go(-1)");
  172. }
  173. $tablename=$add['tablename'];
  174. $count=count($tablename);
  175. if(empty($count)){
  176. printerror("MustChangeOneTable","history.go(-1)");
  177. }
  178. $add['baktype']=(int)$add['baktype'];
  179. $add['filesize']=(int)$add['filesize'];
  180. $add['bakline']=(int)$add['bakline'];
  181. $add['autoauf']=(int)$add['autoauf'];
  182. if((!$add['filesize']&&!$add['baktype'])||(!$add['bakline']&&$add['baktype'])){
  183. printerror("FileSizeEmpty","history.go(-1)");
  184. }
  185. //目录名
  186. $add['mypath']=RepPostStr($add['mypath'],1);
  187. $bakpath=$public_r['bakdbpath'];
  188. if(empty($add['mypath'])){
  189. $add['mypath']=$dbname."_".date("YmdHis");
  190. }
  191. DoMkdir($bakpath."/".$add['mypath']);
  192. //生成说明文件
  193. $readme=$add['readme'];
  194. $rfile=$bakpath."/".$add['mypath']."/readme.txt";
  195. $readme.="\r\n\r\nBaktime: ".date("Y-m-d H:i:s");
  196. WriteFiletext_n($rfile,$readme);
  197. $b_table="";
  198. $d_table="";
  199. for($i=0;$i<$count;$i++){
  200. $tablename[$i]=RepPostVar($tablename[$i]);
  201. $b_table.=$tablename[$i].",";
  202. $d_table.="\$tb[".$tablename[$i]."]=0;\r\n";
  203. }
  204. //去掉最后一个,
  205. $b_table=substr($b_table,0,strlen($b_table)-1);
  206. $bakstru=(int)$add['bakstru'];
  207. $bakstrufour=(int)$add['bakstrufour'];
  208. $beover=(int)$add['beover'];
  209. $waitbaktime=(int)$add['waitbaktime'];
  210. $bakdatatype=(int)$add['bakdatatype'];
  211. if($add['insertf']=='insert'){
  212. $insertf='insert';
  213. }
  214. else{
  215. $insertf='replace';
  216. }
  217. if($ecms_config['db']['dbver']=='4.0'&&$add['dbchar']=='auto')
  218. {
  219. $add['dbchar']='';
  220. }
  221. $string="<?php
  222. \$b_table=\"".$b_table."\";
  223. ".$d_table."
  224. \$b_baktype=".$add['baktype'].";
  225. \$b_filesize=".$add['filesize'].";
  226. \$b_bakline=".$add['bakline'].";
  227. \$b_autoauf=".$add['autoauf'].";
  228. \$b_dbname=\"".$dbname."\";
  229. \$b_stru=".$bakstru.";
  230. \$b_strufour=".$bakstrufour.";
  231. \$b_dbchar=\"".addslashes($add['dbchar'])."\";
  232. \$b_beover=".$beover.";
  233. \$b_insertf=\"".addslashes($insertf)."\";
  234. \$b_autofield=\",".addslashes($add['autofield']).",\";
  235. \$b_bakdatatype=".$bakdatatype.";
  236. ?>";
  237. $cfile=$bakpath."/".$add['mypath']."/config.php";
  238. WriteFiletext_n($cfile,$string);
  239. if($add['baktype']){
  240. $phome='BakExeT';
  241. }
  242. else{
  243. $phome='BakExe';
  244. }
  245. echo $fun_r['FirstBakSuccess']."<script>self.location.href='phome.php?phome=$phome&t=0&s=0&p=0&mypath=$add[mypath]&waitbaktime=$waitbaktime".hReturnEcmsHashStrHref(0)."';</script>";
  246. exit();
  247. }
  248. //执行备份(按文件大小)
  249. function Ebak_BakExe($t,$s,$p,$mypath,$alltotal,$thenof,$fnum,$stime=0,$userid,$username){
  250. global $empire,$public_r,$fun_r;
  251. //验证权限
  252. CheckLevel($userid,$username,$classid,"dbdata");
  253. if(empty($mypath)){
  254. printerror("ErrorUrl","history.go(-1)");
  255. }
  256. $bakpath=$public_r['bakdbpath'];
  257. $path=$bakpath."/".$mypath;
  258. @include($path."/config.php");
  259. if(empty($b_table)){
  260. printerror("ErrorUrl","history.go(-1)");
  261. }
  262. $waitbaktime=(int)$_GET['waitbaktime'];
  263. if(empty($stime))
  264. {
  265. $stime=time();
  266. }
  267. $header="<?php
  268. @include(\"../../inc/header.php\");
  269. ";
  270. $footer="
  271. @include(\"../../inc/footer.php\");
  272. ?>";
  273. $btb=explode(",",$b_table);
  274. $count=count($btb);
  275. $t=(int)$t;
  276. $s=(int)$s;
  277. $p=(int)$p;
  278. //备份完毕
  279. if($t>=$count)
  280. {
  281. insert_dolog("dbname=".$b_dbname);//操作日志
  282. $varmessage=$fun_r['BakSuccess']."<br><br>".$fun_r['TotalUseTime'].ToChangeUseTime($stime);
  283. $GLOBALS['varmessage']=$varmessage;
  284. printerror('VarMessage','ChangeDb.php'.hReturnEcmsHashStrHref2(1),0,1);
  285. }
  286. $dumpsql=Ebak_ReturnVer();
  287. //选择数据库
  288. $u=$empire->usequery("use `$b_dbname`");
  289. //编码
  290. if($b_dbchar=='auto')
  291. {
  292. if(empty($s))
  293. {
  294. $status_r=Ebak_GetTotal($b_dbname,$btb[$t]);
  295. $collation=Ebak_GetSetChar($status_r['Collation']);
  296. DoSetDbChar($collation);
  297. //总记录数
  298. $num=$public_r[limittype]?-1:$status_r['Rows'];
  299. }
  300. else
  301. {
  302. $collation=$_GET['collation'];
  303. DoSetDbChar($collation);
  304. $num=(int)$alltotal;
  305. }
  306. $dumpsql.=Ebak_ReturnSetNames($collation);
  307. }
  308. else
  309. {
  310. DoSetDbChar($b_dbchar);
  311. if(empty($s))
  312. {
  313. //总记录数
  314. if($public_r[limittype])
  315. {
  316. $num=-1;
  317. }
  318. else
  319. {
  320. $status_r=Ebak_GetTotal($b_dbname,$btb[$t]);
  321. $num=$status_r['Rows'];
  322. }
  323. }
  324. else
  325. {
  326. $num=(int)$alltotal;
  327. }
  328. }
  329. //备份数据库结构
  330. if($b_stru&&empty($s))
  331. {
  332. $dumpsql.=Ebak_Returnstru($btb[$t],$b_strufour);
  333. }
  334. $sql=$empire->query("select * from `".$btb[$t]."` limit $s,$num");
  335. //取得字段数
  336. if(empty($fnum))
  337. {
  338. $return_fr=Ebak_ReturnTbfield($b_dbname,$btb[$t],$b_autofield);
  339. $fieldnum=$return_fr['num'];
  340. $noautof=$return_fr['autof'];
  341. }
  342. else
  343. {
  344. $fieldnum=$fnum;
  345. $noautof=$thenof;
  346. }
  347. //完整插入
  348. $inf='';
  349. if($b_beover==1)
  350. {
  351. $inf='('.Ebak_ReturnInTbfield($b_dbname,$btb[$t]).')';
  352. }
  353. //十六进制
  354. $hexf='';
  355. if($b_bakdatatype==1)
  356. {
  357. $hexf=Ebak_ReturnInStrTbfield($b_dbname,$btb[$t]);
  358. }
  359. $b=0;
  360. while($r=$empire->fetch($sql))
  361. {
  362. $b=1;
  363. $s++;
  364. $dumpsql.="E_D(\"".$b_insertf." into `".$btb[$t]."`".$inf." values(";
  365. $first=1;
  366. for($i=0;$i<$fieldnum;$i++)
  367. {
  368. //首字段
  369. if(empty($first))
  370. {
  371. $dumpsql.=',';
  372. }
  373. else
  374. {
  375. $first=0;
  376. }
  377. $myi=$i+1;
  378. if(!isset($r[$i])||strstr($noautof,','.$myi.','))
  379. {
  380. $dumpsql.='NULL';
  381. }
  382. else
  383. {
  384. $dumpsql.=Ebak_ReSqlFtext($r[$i],$b_bakdatatype,$myi,$hexf);
  385. }
  386. }
  387. $dumpsql.=");\");\r\n";
  388. //是否超过限制
  389. if(strlen($dumpsql)>=$b_filesize*1024)
  390. {
  391. $p++;
  392. $sfile=$path."/".$btb[$t]."_".$p.".php";
  393. $dumpsql=$header.$dumpsql.$footer;
  394. WriteFiletext_n($sfile,$dumpsql);
  395. $empire->free($sql);
  396. //echo $fun_r['BakOneDataSuccess'].Ebak_EchoBakSt($btb[$t],$count,$t,$num,$s)."<script>self.location.href='phome.php?phome=BakExe&s=$s&p=$p&t=$t&mypath=$mypath&alltotal=$num&thenof=$noautof&fieldnum=$fieldnum&stime=$stime".hReturnEcmsHashStrHref(0)."';</script>";
  397. echo"<meta http-equiv=\"refresh\" content=\"".$waitbaktime.";url=phome.php?phome=BakExe&s=$s&p=$p&t=$t&mypath=$mypath&alltotal=$num&thenof=$noautof&fieldnum=$fieldnum&stime=$stime&waitbaktime=$waitbaktime&collation=$collation".hReturnEcmsHashStrHref(0)."\">".$fun_r['BakOneDataSuccess'].Ebak_EchoBakSt($btb[$t],$count,$t,$num,$s);
  398. exit();
  399. }
  400. }
  401. //最后一个备份
  402. if(empty($p)||$b==1)
  403. {
  404. $p++;
  405. $sfile=$path."/".$btb[$t]."_".$p.".php";
  406. $dumpsql=$header.$dumpsql.$footer;
  407. WriteFiletext_n($sfile,$dumpsql);
  408. }
  409. Ebak_RepFilenum($p,$btb[$t],$path);
  410. $t++;
  411. $empire->free($sql);
  412. //进入下一个表
  413. //echo $btb[$t-1].$fun_r['OneTableBakSuccess']."<script>self.location.href='phome.php?phome=BakExe&s=0&p=0&t=$t&mypath=$mypath&stime=$stime".hReturnEcmsHashStrHref(0)."';</script>";
  414. echo"<meta http-equiv=\"refresh\" content=\"".$waitbaktime.";url=phome.php?phome=BakExe&s=0&p=0&t=$t&mypath=$mypath&stime=$stime&waitbaktime=$waitbaktime".hReturnEcmsHashStrHref(0)."\">".$btb[$t-1].$fun_r['OneTableBakSuccess'];
  415. exit();
  416. }
  417. //执行备份(按记录)
  418. function Ebak_BakExeT($t,$s,$p,$mypath,$alltotal,$thenof,$fnum,$auf='',$aufval=0,$stime=0,$userid,$username){
  419. global $empire,$public_r,$fun_r;
  420. //验证权限
  421. CheckLevel($userid,$username,$classid,"dbdata");
  422. if(empty($mypath)){
  423. printerror("ErrorUrl","history.go(-1)");
  424. }
  425. $bakpath=$public_r['bakdbpath'];
  426. $path=$bakpath."/".$mypath;
  427. @include($path."/config.php");
  428. if(empty($b_table)){
  429. printerror("ErrorUrl","history.go(-1)");
  430. }
  431. $waitbaktime=(int)$_GET['waitbaktime'];
  432. if(empty($stime))
  433. {
  434. $stime=time();
  435. }
  436. $header="<?php
  437. @include(\"../../inc/header.php\");
  438. ";
  439. $footer="
  440. @include(\"../../inc/footer.php\");
  441. ?>";
  442. $btb=explode(",",$b_table);
  443. $count=count($btb);
  444. $t=(int)$t;
  445. $s=(int)$s;
  446. $p=(int)$p;
  447. //备份完毕
  448. if($t>=$count)
  449. {
  450. insert_dolog("dbname=".$b_dbname);//操作日志
  451. $varmessage=$fun_r['BakSuccess']."<br><br>".$fun_r['TotalUseTime'].ToChangeUseTime($stime);
  452. $GLOBALS['varmessage']=$varmessage;
  453. printerror('VarMessage','ChangeDb.php'.hReturnEcmsHashStrHref2(1),0,1);
  454. }
  455. $dumpsql=Ebak_ReturnVer();
  456. //选择数据库
  457. $u=$empire->usequery("use `$b_dbname`");
  458. //编码
  459. if($b_dbchar=='auto')
  460. {
  461. if(empty($s))
  462. {
  463. $status_r=Ebak_GetTotal($b_dbname,$btb[$t]);
  464. $collation=Ebak_GetSetChar($status_r['Collation']);
  465. DoSetDbChar($collation);
  466. //总记录数
  467. $num=$public_r[limittype]?-1:$status_r['Rows'];
  468. }
  469. else
  470. {
  471. $collation=$_GET['collation'];
  472. DoSetDbChar($collation);
  473. $num=(int)$alltotal;
  474. }
  475. $dumpsql.=Ebak_ReturnSetNames($collation);
  476. }
  477. else
  478. {
  479. DoSetDbChar($b_dbchar);
  480. if(empty($s))
  481. {
  482. //总记录数
  483. if($public_r[limittype])
  484. {
  485. $num=-1;
  486. }
  487. else
  488. {
  489. $status_r=Ebak_GetTotal($b_dbname,$btb[$t]);
  490. $num=$status_r['Rows'];
  491. }
  492. }
  493. else
  494. {
  495. $num=(int)$alltotal;
  496. }
  497. }
  498. //备份数据库结构
  499. if($b_stru&&empty($s))
  500. {
  501. $dumpsql.=Ebak_Returnstru($btb[$t],$b_strufour);
  502. }
  503. //取得字段数
  504. if(empty($fnum))
  505. {
  506. $return_fr=Ebak_ReturnTbfield($b_dbname,$btb[$t],$b_autofield);
  507. $fieldnum=$return_fr['num'];
  508. $noautof=$return_fr['autof'];
  509. $auf=$return_fr['auf'];
  510. }
  511. else
  512. {
  513. $fieldnum=$fnum;
  514. $noautof=$thenof;
  515. }
  516. //自动识别自增项
  517. $aufval=(int)$aufval;
  518. if($b_autoauf==1&&$auf)
  519. {
  520. $sql=$empire->query("select * from `".$btb[$t]."` where ".$auf.">".$aufval." order by ".$auf." limit $b_bakline");
  521. }
  522. else
  523. {
  524. $sql=$empire->query("select * from `".$btb[$t]."` limit $s,$b_bakline");
  525. }
  526. //完整插入
  527. $inf='';
  528. if($b_beover==1)
  529. {
  530. $inf='('.Ebak_ReturnInTbfield($b_dbname,$btb[$t]).')';
  531. }
  532. //十六进制
  533. $hexf='';
  534. if($b_bakdatatype==1)
  535. {
  536. $hexf=Ebak_ReturnInStrTbfield($b_dbname,$btb[$t]);
  537. }
  538. $b=0;
  539. while($r=$empire->fetch($sql))
  540. {
  541. if($auf)
  542. {
  543. $lastaufval=$r[$auf];
  544. }
  545. $b=1;
  546. $s++;
  547. $dumpsql.="E_D(\"".$b_insertf." into `".$btb[$t]."`".$inf." values(";
  548. $first=1;
  549. for($i=0;$i<$fieldnum;$i++)
  550. {
  551. //首字段
  552. if(empty($first))
  553. {
  554. $dumpsql.=',';
  555. }
  556. else
  557. {
  558. $first=0;
  559. }
  560. $myi=$i+1;
  561. if(!isset($r[$i])||strstr($noautof,','.$myi.','))
  562. {
  563. $dumpsql.='NULL';
  564. }
  565. else
  566. {
  567. $dumpsql.=Ebak_ReSqlFtext($r[$i],$b_bakdatatype,$myi,$hexf);
  568. }
  569. }
  570. $dumpsql.=");\");\r\n";
  571. }
  572. if(empty($b))
  573. {
  574. //最后一个备份
  575. if(empty($p))
  576. {
  577. $p++;
  578. $sfile=$path."/".$btb[$t]."_".$p.".php";
  579. $dumpsql=$header.$dumpsql.$footer;
  580. WriteFiletext_n($sfile,$dumpsql);
  581. }
  582. Ebak_RepFilenum($p,$btb[$t],$path);
  583. $t++;
  584. $empire->free($sql);
  585. //进入下一个表
  586. //echo $btb[$t-1].$fun_r['OneTableBakSuccess']."<script>self.location.href='phome.php?phome=BakExeT&s=0&p=0&t=$t&mypath=$mypath&stime=$stime".hReturnEcmsHashStrHref(0)."';</script>";
  587. echo"<meta http-equiv=\"refresh\" content=\"".$waitbaktime.";url=phome.php?phome=BakExeT&s=0&p=0&t=$t&mypath=$mypath&stime=$stime&waitbaktime=$waitbaktime".hReturnEcmsHashStrHref(0)."\">".$btb[$t-1].$fun_r['OneTableBakSuccess'];
  588. exit();
  589. }
  590. //进入下一组
  591. $p++;
  592. $sfile=$path."/".$btb[$t]."_".$p.".php";
  593. $dumpsql=$header.$dumpsql.$footer;
  594. WriteFiletext_n($sfile,$dumpsql);
  595. $empire->free($sql);
  596. //echo $fun_r['BakOneDataSuccess'].Ebak_EchoBakSt($btb[$t],$count,$t,$num,$s)."<script>self.location.href='phome.php?phome=BakExeT&s=$s&p=$p&t=$t&mypath=$mypath&alltotal=$num&thenof=$noautof&fieldnum=$fieldnum&auf=$auf&aufval=$lastaufval&stime=$stime".hReturnEcmsHashStrHref(0)."';</script>";
  597. echo"<meta http-equiv=\"refresh\" content=\"".$waitbaktime.";url=phome.php?phome=BakExeT&s=$s&p=$p&t=$t&mypath=$mypath&alltotal=$num&thenof=$noautof&fieldnum=$fieldnum&auf=$auf&aufval=$lastaufval&stime=$stime&waitbaktime=$waitbaktime&collation=$collation".hReturnEcmsHashStrHref(0)."\">".$fun_r['BakOneDataSuccess'].Ebak_EchoBakSt($btb[$t],$count,$t,$num,$s);
  598. exit();
  599. }
  600. //输出备份进度条
  601. function Ebak_EchoBakSt($tbname,$tbnum,$tb,$rnum,$r){
  602. $table=($tb+1).'/'.$tbnum;
  603. $record=$r;
  604. if($rnum!=-1)
  605. {
  606. $record=$r.'/'.$rnum;
  607. }
  608. ?>
  609. <br><br>
  610. <table width="90%" border="0" align="center" cellpadding="3" cellspacing="1">
  611. <tr><td height="25">Table Name&nbsp;:&nbsp;<b><?=$tbname?></b></td></tr>
  612. <tr><td height="25">Table&nbsp;:&nbsp;<b><?=$table?></b></td></tr>
  613. <tr><td height="25">Record&nbsp;:&nbsp;<b><?=$record?></b></td></tr>
  614. </table><br><br>
  615. <?
  616. }
  617. //输出恢复进度条
  618. function Ebak_EchoReDataSt($tbname,$tbnum,$tb,$pnum,$p){
  619. $table=($tb+1).'/'.$tbnum;
  620. $record=$p.'/'.$pnum;
  621. ?>
  622. <br><br>
  623. <table width="90%" border="0" align="center" cellpadding="3" cellspacing="1">
  624. <tr><td height="25">Table Name&nbsp;:&nbsp;<b><?=$tbname?></b></td></tr>
  625. <tr><td height="25">Table&nbsp;:&nbsp;<b><?=$table?></b></td></tr>
  626. <tr><td height="25">File&nbsp;:&nbsp;<b><?=$record?></b></td></tr>
  627. </table><br><br>
  628. <?
  629. }
  630. //取得表记录数
  631. function Ebak_GetTotal($dbname,$tbname){
  632. global $empire;
  633. /*
  634. $tr=$empire->fetch1("select count(*) AS total from ".$btb[$t]);
  635. $num=$tr[total];
  636. */
  637. $tr=$empire->fetch1("SHOW TABLE STATUS LIKE '".$tbname."';");
  638. return $tr;
  639. }
  640. //返回字符集set
  641. function Ebak_GetSetChar($char){
  642. global $empire;
  643. if(empty($char))
  644. {
  645. return '';
  646. }
  647. $r=$empire->fetch1("SHOW COLLATION LIKE '".$char."';");
  648. return $r['Charset'];
  649. }
  650. //返回表字段信息
  651. function Ebak_ReturnTbfield($dbname,$tbname,$autofield){
  652. global $empire;
  653. $sql=$empire->query("SHOW FIELDS FROM `".$tbname."`");
  654. $i=0;//字段数
  655. $autof=",";//去除自增字段列表
  656. $f='';//自增字段名
  657. while($r=$empire->fetch($sql))
  658. {
  659. $i++;
  660. if(strstr($autofield,",".$tbname.".".$r[Field].","))
  661. {
  662. $autof.=$i.",";
  663. }
  664. if($r['Extra']=='auto_increment')
  665. {
  666. $f=$r['Field'];
  667. }
  668. }
  669. $return_r['num']=$i;
  670. $return_r['autof']=$autof;
  671. $return_r['auf']=$f;
  672. return $return_r;
  673. }
  674. //返回插入字段
  675. function Ebak_ReturnInTbfield($dbname,$tbname){
  676. global $empire;
  677. $sql=$empire->query("SHOW FIELDS FROM `".$tbname."`");
  678. $f='';
  679. $dh='';
  680. while($r=$empire->fetch($sql))
  681. {
  682. $f.=$dh.'`'.$r['Field'].'`';
  683. $dh=',';
  684. }
  685. return $f;
  686. }
  687. //返回字符字段
  688. function Ebak_ReturnInStrTbfield($dbname,$tbname){
  689. global $empire;
  690. $sql=$empire->query("SHOW FIELDS FROM `".$tbname."`");
  691. $i=0;
  692. $f='';
  693. $dh='';
  694. while($r=$empire->fetch($sql))
  695. {
  696. $i++;
  697. if(!(stristr($r[Type],'char')||stristr($r[Type],'text')))
  698. {
  699. continue;
  700. }
  701. $f.=$dh.$i;
  702. $dh=',';
  703. }
  704. if($f)
  705. {
  706. $f=','.$f.',';
  707. }
  708. return $f;
  709. }
  710. //返回字段内容
  711. function Ebak_ReSqlFtext($str,$bakdatatype,$i,$tbstrf){
  712. if($bakdatatype==1&&!empty($str)&&strstr($tbstrf,','.$i.','))
  713. {
  714. $restr='0x'.bin2hex($str);
  715. }
  716. else
  717. {
  718. $restr='\''.escape_str($str).'\'';
  719. }
  720. return $restr;
  721. }
  722. //替换文件数
  723. function Ebak_RepFilenum($p,$table,$path){
  724. if(empty($p))
  725. {$p=0;}
  726. $file=$path."/config.php";
  727. $text=ReadFiletext($file);
  728. $rep1="\$tb[".$table."]=0;";
  729. $rep2="\$tb[".$table."]=".$p.";";
  730. $text=str_replace($rep1,$rep2,$text);
  731. WriteFiletext_n($file,$text);
  732. }
  733. //执行SQL
  734. function E_D($sql){
  735. global $empire;
  736. $empire->query($sql);
  737. }
  738. //建立表
  739. function E_C($sql){
  740. global $empire;
  741. $empire->query(Ebak_AddDbchar($sql));
  742. }
  743. //转为Mysql4.0格式
  744. function Ebak_ToMysqlFour($query){
  745. $exp="ENGINE=";
  746. if(!strstr($query,$exp))
  747. {
  748. return $query;
  749. }
  750. $exp1=" ";
  751. $r=explode($exp,$query);
  752. //取得表类型
  753. $r1=explode($exp1,$r[1]);
  754. $returnquery=$r[0]."TYPE=".$r1[0];
  755. return $returnquery;
  756. }
  757. //---------------------返回数据库结构
  758. function Ebak_Returnstru($table,$strufour){
  759. global $empire;
  760. $dumpsql.="E_D(\"DROP TABLE IF EXISTS `".$table."`;\");\r\n";
  761. //设置引号
  762. $usql=$empire->query("SET SQL_QUOTE_SHOW_CREATE=1;");
  763. //数据表结构
  764. $r=$empire->fetch1("SHOW CREATE TABLE `$table`;");
  765. $create=str_replace("\"","\\\"",$r[1]);
  766. //转为4.0格式
  767. if($strufour)
  768. {
  769. $create=Ebak_ToMysqlFour($create);
  770. }
  771. $dumpsql.="E_C(\"".$create."\");\r\n";
  772. return $dumpsql;
  773. }
  774. //返回设置编码
  775. function Ebak_ReturnSetNames($char){
  776. if(empty($char))
  777. {
  778. return '';
  779. }
  780. $dumpsql="DoSetDbChar('".$char."');\r\n";
  781. return $dumpsql;
  782. }
  783. //去除字段中的编码
  784. function Ebak_ReplaceFieldChar($sql){
  785. global $ecms_config;
  786. if($ecms_config['db']['dbver']=='4.0'&&strstr($sql,' character set '))
  787. {
  788. $preg_str="/ character set (.+?) collate (.+?) /is";
  789. $sql=preg_replace($preg_str,' ',$sql);
  790. }
  791. return $sql;
  792. }
  793. //加编码
  794. function Ebak_AddDbchar($sql){
  795. global $ecms_config,$b_dbchar;
  796. //加编码
  797. if($ecms_config['db']['dbver']>='4.1'&&!strstr($sql,'ENGINE=')&&($ecms_config['db']['setchar']||$b_dbchar)&&$b_dbchar!='auto')
  798. {
  799. $dbcharset=$b_dbchar?$b_dbchar:$ecms_config['db']['setchar'];
  800. $sql=Ebak_DoCreateTable($sql,$ecms_config['db']['dbver'],$dbcharset);
  801. }
  802. elseif($ecms_config['db']['dbver']=='4.0'&&strstr($sql,'ENGINE='))
  803. {
  804. $sql=Ebak_ToMysqlFour($sql);
  805. }
  806. //去除字段中的编码
  807. $sql=Ebak_ReplaceFieldChar($sql);
  808. return $sql;
  809. }
  810. //建表
  811. function Ebak_DoCreateTable($sql,$mysqlver,$dbcharset){
  812. $type=strtoupper(preg_replace("/^\s*CREATE TABLE\s+.+\s+\(.+?\).*(ENGINE|TYPE)\s*=\s*([a-z]+?).*$/isU","\\2",$sql));
  813. $type=in_array($type,array('MYISAM','HEAP'))?$type:'MYISAM';
  814. return preg_replace("/^\s*(CREATE TABLE\s+.+\s+\(.+?\)).*$/isU","\\1",$sql).
  815. ($mysqlver>='4.1'?" ENGINE=$type DEFAULT CHARSET=$dbcharset":" TYPE=$type");
  816. }
  817. //返回版权信息
  818. function Ebak_ReturnVer()
  819. {
  820. $string="
  821. /*
  822. SoftName : EmpireBak
  823. Author : wm_chief
  824. Copyright: Powered by www.phome.net
  825. */
  826. ";
  827. return $string;
  828. }
  829. //转换大小
  830. function Ebak_ChangeSize($size){
  831. if($size<1024)
  832. {
  833. $str=$size." B";
  834. }
  835. elseif($size<1024*1024)
  836. {
  837. $str=round($size/1024,2)." KB";
  838. }
  839. elseif($size<1024*1024*1024)
  840. {
  841. $str=round($size/(1024*1024),2)." MB";
  842. }
  843. else
  844. {
  845. $str=round($size/(1024*1024*1024),2)." GB";
  846. }
  847. return $str;
  848. }
  849. //导入数据
  850. function Ebak_ReData($add,$mypath,$userid,$username){
  851. global $empire,$public_r;
  852. //验证权限
  853. CheckLevel($userid,$username,$classid,"dbdata");
  854. $mypath=RepPostStr($mypath,1);
  855. $add[mydbname]=RepPostStr($add[mydbname],1);
  856. if(empty($mypath)||empty($add[mydbname]))
  857. {printerror("EmptyDbnamePath","history.go(-1)");}
  858. $bakpath=$public_r['bakdbpath'];
  859. $path=$bakpath."/".$mypath;
  860. if(!file_exists($path))
  861. {
  862. printerror("DbPathNotExist","history.go(-1)");
  863. }
  864. @include($path."/config.php");
  865. if(empty($b_table))
  866. {
  867. printerror("BakCsError","history.go(-1)");
  868. }
  869. $waitbaktime=(int)$add['waitbaktime'];
  870. $btb=explode(",",$b_table);
  871. $nfile=$path."/".$btb[0]."_1.php?t=0&p=0&mydbname=$add[mydbname]&mypath=$mypath&waitbaktime=$waitbaktime".hReturnEcmsHashStrHref(0);
  872. Header("Location:$nfile");
  873. exit();
  874. }
  875. //删除备份目录
  876. function Ebak_DelBakpath($path,$userid,$username){
  877. global $public_r;
  878. //验证权限
  879. CheckLevel($userid,$username,$classid,"dbdata");
  880. $path=RepPostStr($path,1);
  881. if(strstr($path,".."))
  882. {printerror("NotChangeDelPath","history.go(-1)");}
  883. if(!trim($path))
  884. {printerror("NotChangeDelPath","history.go(-1)");}
  885. $bakpath=$public_r['bakdbpath'];
  886. $delpath=$bakpath."/".$path;
  887. if(!file_exists($delpath))
  888. {
  889. printerror("ThisPathNotExist","history.go(-1)");
  890. }
  891. @include_once("../../class/delpath.php");
  892. $delpath=DelPath($delpath);
  893. //操作日志
  894. insert_dolog("path=".$path);
  895. printerror("DelPathSuccess","ChangePath.php?change=".RepPostStr($_GET['change'],1).hReturnEcmsHashStrHref2(0));
  896. }
  897. //打包目录
  898. function ZipFile($path,$zipname){
  899. global $public_r;
  900. $bakpath=$public_r['bakdbpath'];
  901. $bakzippath=$public_r['bakdbzip'];
  902. @include("../../class/phpzip.inc.php");
  903. $z=new PHPZip(); //新建立一个zip的类
  904. $z->Zip($bakpath."/".$path,$bakzippath."/".$zipname); //添加指定目录
  905. }
  906. //删除压缩包
  907. function Ebak_DelZip($file,$userid,$username){
  908. global $public_r;
  909. //验证权限
  910. CheckLevel($userid,$username,$classid,"dbdata");
  911. $file=RepPostStr($file,1);
  912. if(strstr($file,".."))
  913. {printerror("FileNotExist","history.go(-1)",8);}
  914. if(empty($file))
  915. {
  916. printerror("FileNotExist","history.go(-1)",8);
  917. }
  918. $bakzippath=$public_r['bakdbzip'];
  919. $filename=$bakzippath."/".$file;
  920. if(!file_exists($filename))
  921. {
  922. printerror("FileNotExist","history.go(-1)",8);
  923. }
  924. DelFiletext($filename);
  925. //操作日志
  926. insert_dolog("file=".$file);
  927. printerror("DelZipFileSuccess","history.go(-1)",8);
  928. }
  929. //压缩目录
  930. function Ebak_Dozip($path,$userid,$username){
  931. global $public_r;
  932. //验证权限
  933. CheckLevel($userid,$username,$classid,"dbdata");
  934. $path=RepPostStr($path,1);
  935. if(strstr($path,".."))
  936. {printerror("ThisPathNotExist","history.go(-1)",8);}
  937. if(empty($path))
  938. {
  939. printerror("ThisPathNotExist","history.go(-1)",8);
  940. }
  941. $bakpath=$public_r['bakdbpath'];
  942. $bakzippath=$public_r['bakdbzip'];
  943. $mypath=$bakpath."/".$path;
  944. if(!file_exists($mypath))
  945. {
  946. printerror("ThisPathNotExist","history.go(-1)",8);
  947. }
  948. $zipname=$path.make_password(10).".zip";
  949. ZipFile($path,$zipname);
  950. echo"<script>self.location.href='DownZip.php?f=$zipname&p=$path".hReturnEcmsHashStrHref2(0)."';</script>";
  951. }
  952. //转向恢复页面
  953. function Ebak_PathGotoRedata($path,$userid,$username){
  954. global $public_r;
  955. //验证权限
  956. CheckLevel($userid,$username,$classid,"dbdata");
  957. $path=RepPostStr($path,1);
  958. if(strstr($path,".."))
  959. {printerror("NotChangeDelPath","history.go(-1)");}
  960. if(!trim($path))
  961. {printerror("NotChangeDelPath","history.go(-1)");}
  962. $bakpath=$public_r['bakdbpath'];
  963. $repath=$bakpath."/".$path;
  964. if(!file_exists($repath))
  965. {
  966. printerror("ThisPathNotExist","history.go(-1)");
  967. }
  968. @include $repath.'/config.php';
  969. Header("Location:ReData.php?mydbname=$b_dbname&mypath=$path".hReturnEcmsHashStrHref2(0));
  970. exit();
  971. }
  972. ?>