helper.sys.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  1. <?php
  2. //自动跳转
  3. if(!function_exists("sys_header"))
  4. {
  5. function sys_header($url)
  6. {
  7. $url = str_replace("&amp;","&",$url);
  8. if(!headers_sent())
  9. {
  10. header("Location:".$url);
  11. }
  12. else
  13. {
  14. echo '<script type="text/javascript">';
  15. echo 'window.location.href="'.$url.'";';
  16. echo '</script>';
  17. }
  18. exit;
  19. }
  20. }
  21. //安全数据传输
  22. if(!function_exists("sys_rgpc_safe"))
  23. {
  24. function sys_rgpc_safe($msg,$f=false)
  25. {
  26. $status = get_magic_quotes_gpc();
  27. if(!$status || $f)
  28. {
  29. if(is_array($msg))
  30. {
  31. foreach($msg AS $key=>$value)
  32. {
  33. $msg[$key] = sys_rgpc_safe($value,$f);
  34. }
  35. }
  36. else
  37. {
  38. $msg = addslashes($msg);
  39. }
  40. }
  41. return $msg;
  42. }
  43. }
  44. //统计运行时间
  45. if(!function_exists("sys_time_used"))
  46. {
  47. function sys_time_used()
  48. {
  49. if(!defined("SYS_TIME_START"))
  50. {
  51. return false;
  52. }
  53. $time = explode(" ",microtime());
  54. $end_time = $time[0] + $time[1];
  55. return round(($end_time-SYS_TIME_START),5);
  56. }
  57. }
  58. //内存应用统计
  59. if(!function_exists("sys_memory_used"))
  60. {
  61. function sys_memory_used()
  62. {
  63. if(!defined("SYS_MEMORY_START") || !function_exists("memory_get_usage"))
  64. {
  65. return false;
  66. }
  67. $end = memory_get_usage();
  68. $used = $end - SYS_MEMORY_START;
  69. if($used <= 1024)
  70. {
  71. $used = "1 KB";
  72. }
  73. elseif($used>1024 && $used<(1024*1024))
  74. {
  75. $used = round(($used/1024),4)." KB";
  76. }
  77. else
  78. {
  79. $used = round(($used/(1024*1024)),4)." MB";
  80. }
  81. return $used;
  82. }
  83. }
  84. //获取控制层的三个参数
  85. if(!function_exists("sys_get_cf"))
  86. {
  87. function sys_get_cf($var)
  88. {
  89. $val = $_GET[$var];
  90. if(!$val)
  91. {
  92. return false;
  93. }
  94. //判断格式是否正确
  95. if(!ereg('^[a-z][a-z\_0-9]+$',$val))
  96. {
  97. exit('error: Only letters, numbers and underscores!');
  98. }
  99. return $val;
  100. }
  101. }
  102. if(!function_exists("sys_get_d"))
  103. {
  104. function sys_get_d($var)
  105. {
  106. $val = $_GET[$var];
  107. if(!$val)
  108. {
  109. return false;
  110. }
  111. //判断格式是否正确
  112. if(!ereg('^[a-z][a-z\_0-9\/]+$',$val))
  113. {
  114. exit('error: Only letters, numbers and underscores!');
  115. }
  116. return $val;
  117. }
  118. }
  119. //用于调试用的信息
  120. if(!function_exists("sys_debug"))
  121. {
  122. function sys_debug($ifarray = false)
  123. {
  124. $app = sys_init();
  125. $time_used = sys_time_used();
  126. $mysql_count = $app->db_count();
  127. $mysql_times = $app->db_times();
  128. $memory = sys_memory_used();
  129. if($ifarray)
  130. {
  131. $array = array();
  132. $array["php_time"] = $time_used;
  133. $array["mysql_count"] = $mysql_count;
  134. $array["mysql_time"] = $mysql_times;
  135. if($memory)
  136. {
  137. $array["memory"] = $memory;
  138. }
  139. return $array;
  140. }
  141. else
  142. {
  143. $msg = "Processed in ".$time_used." second(s), mysql: ".$mysql_count." queries";
  144. $msg.= ", ".$mysql_times." second(s)";
  145. if($memory)
  146. {
  147. $msg.= ", memory: ".$memory;
  148. }
  149. return $msg;
  150. }
  151. }
  152. }
  153. //根据得到的数据执行二次MD5加密方案
  154. //参数最多只支持一维数据(多维数据将会出错)
  155. if(!function_exists("sys_md5"))
  156. {
  157. function sys_md5($rs)
  158. {
  159. if(!$rs)
  160. {
  161. return false;
  162. }
  163. $rs = is_array($rs) ? implode("[:phpok:]",$rs) : $rs;
  164. return md5(md5($rs));
  165. }
  166. }
  167. //执行变量替换,以实现在语言包中使用变量
  168. if(!function_exists("sys_eval"))
  169. {
  170. function sys_eval($string,$val="")
  171. {
  172. if(!$val)
  173. {
  174. return $string;
  175. }
  176. if(is_array($val))
  177. {
  178. foreach($val AS $key=>$value)
  179. {
  180. $string = str_replace("{".$key."}",$value,$string);
  181. }
  182. }
  183. else
  184. {
  185. $string = preg_replace("/\{(.*)\}/isU",$val,$string);
  186. }
  187. return $string;
  188. }
  189. }
  190. if(!function_exists("sys_id_list"))
  191. {
  192. function sys_id_list($id,$type="strval",$implode_code=",")
  193. {
  194. if(!in_array($type,array("strval","intval","floatval"))) $type = "strval";
  195. if(!$id || (!is_array($id) && !is_string($id)))
  196. {
  197. return false;
  198. }
  199. if(is_string($id))
  200. {
  201. $new_list = array();
  202. $idlist = explode($implode_code,$id);
  203. foreach($idlist AS $key=>$value)
  204. {
  205. $value = trim($value);
  206. if($value)
  207. {
  208. $new_list[] = $type($value);
  209. }
  210. }
  211. }
  212. else
  213. {
  214. $new_list = array();
  215. foreach($id AS $key=>$value)
  216. {
  217. $value = trim($value);
  218. if($value)
  219. {
  220. $new_list[] = $type($value);
  221. }
  222. }
  223. }
  224. $new_list = array_unique($new_list);
  225. if(count($new_list)>0)
  226. {
  227. return $new_list;
  228. }
  229. else
  230. {
  231. return false;
  232. }
  233. }
  234. }
  235. //指格式化ID
  236. if(!function_exists("sys_id_string"))
  237. {
  238. function sys_id_string($id,$implode_code = ",",$type="strval")
  239. {
  240. if(!in_array($type,array("strval","intval","floatval"))) $type = "strval";
  241. $id = sys_id_list($id,$type,$implode_code);
  242. if($id)
  243. {
  244. return implode($implode_code,$id);
  245. }
  246. else
  247. {
  248. return false;
  249. }
  250. }
  251. }
  252. if(!function_exists("sys_ip"))
  253. {
  254. function sys_ip()
  255. {
  256. $cip = (isset($_SERVER['HTTP_CLIENT_IP']) AND $_SERVER['HTTP_CLIENT_IP'] != "") ? $_SERVER['HTTP_CLIENT_IP'] : FALSE;
  257. $rip = (isset($_SERVER['REMOTE_ADDR']) AND $_SERVER['REMOTE_ADDR'] != "") ? $_SERVER['REMOTE_ADDR'] : FALSE;
  258. $fip = (isset($_SERVER['HTTP_X_FORWARDED_FOR']) AND $_SERVER['HTTP_X_FORWARDED_FOR'] != "") ? $_SERVER['HTTP_X_FORWARDED_FOR'] : FALSE;
  259. $ip = "0.0.0.0";
  260. if($cip && $rip)
  261. {
  262. $ip = $cip;
  263. }
  264. elseif($rip)
  265. {
  266. $ip = $rip;
  267. }
  268. elseif($cip)
  269. {
  270. $ip = $cip;
  271. }
  272. elseif($fip)
  273. {
  274. $ip = $fip;
  275. }
  276. if (strstr($ip, ','))
  277. {
  278. $x = explode(',', $ip);
  279. $ip = end($x);
  280. }
  281. if ( ! preg_match( "/^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$/", $ip))
  282. {
  283. $ip = '0.0.0.0';
  284. }
  285. unset($cip);
  286. unset($rip);
  287. unset($fip);
  288. return $ip;
  289. }
  290. }
  291. //读取当前分类下的子分类ID,递归法
  292. if(!function_exists("sys_son_cateid"))
  293. {
  294. function sys_son_cateid(&$cate_array,$id=0)
  295. {
  296. $sys_app = sys_init();
  297. $sys_app->load_model("category_model",true);
  298. $sys_app->category_model->langid($_SESSION["sys_lang_id"]);
  299. $rslist = $sys_app->category_model->get_son_cateid($id);
  300. if($rslist && is_array($rslist) && count($rslist))
  301. {
  302. foreach($rslist AS $key=>$value)
  303. {
  304. $cate_array[] = $value["id"];
  305. sys_son_cateid($cate_array,$value["id"]);
  306. }
  307. }
  308. }
  309. }
  310. //格式化价格
  311. if(!function_exists("sys_format_price"))
  312. {
  313. function sys_format_price($val="0.00",$currency="1.0000")
  314. {
  315. return number_format(round($val*$currency,2),2,".","");
  316. }
  317. }
  318. //格式化字符串
  319. if(!function_exists("sys_cutstring"))
  320. {
  321. function sys_cutstring($title,$length=255,$ext="")
  322. {
  323. if(!$title)
  324. {
  325. return false;
  326. }
  327. $app = sys_init();
  328. return $app->trans_lib->cut($title,$length,$ext);
  329. }
  330. }
  331. if(!function_exists("sys_fckeditor"))
  332. {
  333. function sys_fckeditor($var="",$defaultvalue="",$height="370px",$width="690px",$show_html=false)
  334. {
  335. if(intval($width)<300)
  336. {
  337. $width = "300px";
  338. }
  339. if(intval($height)<80)
  340. {
  341. $height = "80px";
  342. }
  343. if(substr($height,-2) != "px") $height .= "px";
  344. if(substr($width,-2) != "px") $width .= "px";
  345. //xheditor 编辑器工具栏
  346. $tools = "Cut,Copy,Paste,Pastetext,|,";
  347. $tools.= "Blocktag,Fontface,FontSize,Bold,Italic,Underline,Strikethrough,FontColor,BackColor,Removeformat,|,";
  348. $tools.= "Align,List,Outdent,Indent,Link,Unlink,Img,Flash,Media,Table,|,";
  349. $tools.= "Source,Fullscreen";
  350. //xheditor 扩展参数
  351. $xheditor_ext = ",internalScript:true";//允许外部引用Script
  352. $xheditor_ext.= ",inlineScript:true";//允许内部写入script
  353. $xheditor_ext.= ",linkTag:true";//允许css
  354. $string = '<script type="text/javascript" src="libs/xheditor/xheditor.js"></script>'."\n";
  355. $string.= '<textarea id="'.$var.'" name="'.$var.'" style="width:'.$width.';height:'.$height.';">'.$defaultvalue.'</textarea>';
  356. $js = '$';
  357. $js.="('#".$var."').xheditor({tools:'".$tools."'".$xheditor_ext."});\n";
  358. $string .= "<script type='text/javascript'>\n";
  359. if($show_html)
  360. {
  361. $js .= '$("#'.$var.'")[0].xheditor.toggleSource(true);'."\n";
  362. }
  363. $string .= $js;
  364. $string .= "</script>";
  365. return $string;
  366. }
  367. }
  368. if(!function_exists("base_url"))
  369. {
  370. function base_url()
  371. {
  372. $myurl = "http://".str_replace("http://","",$_SERVER["SERVER_NAME"]);
  373. $docu = $_SERVER["PHP_SELF"];
  374. $array = explode("/",$docu);
  375. $count = count($array);
  376. if($count>1)
  377. {
  378. foreach($array AS $key=>$value)
  379. {
  380. $value = trim($value);
  381. if($value)
  382. {
  383. if(($key+1) < $count)
  384. {
  385. $myurl .= "/".$value;
  386. }
  387. }
  388. }
  389. }
  390. $myurl .= "/";
  391. return $myurl;
  392. }
  393. }
  394. if(!function_exists("sys_write_cache_txt"))
  395. {
  396. function sys_write_cache_txt()
  397. {
  398. $app = sys_init();
  399. $rslist = $this->cache_lib->cache_rs;
  400. $rslist = $app->cache_save();
  401. //echo "<pre>".print_r($rslist,true)."</pre>";
  402. $app->db->cache_write_txt($rslist);
  403. return true;
  404. }
  405. }
  406. if(!function_exists("sys_is_utf8"))
  407. {
  408. function sys_is_utf8($string)
  409. {
  410. $app = sys_init();
  411. return $app->trans_lib->is_utf8($string);
  412. }
  413. }
  414. if(!function_exists("sys_tpl_setting"))
  415. {
  416. function sys_tpl_setting($tplid=0)
  417. {
  418. $app = sys_init();
  419. if(!$tplid || $tplid == intval($app->tpl->tplid))
  420. {
  421. return false;
  422. }
  423. $app->load_model("tpl");
  424. $rs = $app->tpl_m->getone($tplid);
  425. if(!$rs)
  426. {
  427. return false;
  428. }
  429. $app->tpl->tplid = $tplid;
  430. $app->tpl->tpldir = ROOT."templates/".$rs["folder"];
  431. $app->tpl->cache = ROOT."data/tpl_c";
  432. $app->tpl->ext = $rs["ext"] ? $rs["ext"] : "html";
  433. $app->tpl->autoimg = $rs["autoimg"];
  434. }
  435. }
  436. if(!function_exists("sys_numformat"))
  437. {
  438. function sys_numformat($a,$ext=2)
  439. {
  440. $app = sys_init();
  441. return $app->trans_lib->num_format($a,$ext);
  442. }
  443. }
  444. if(!function_exists("sys_html2js"))
  445. {
  446. function sys_html2js($msg)
  447. {
  448. $msg = str_replace("\r","",$msg);
  449. $msg = str_replace("\n","",$msg);
  450. $msg = str_replace("'","\'",$msg);
  451. exit("var phpok_data='".$msg."';");
  452. }
  453. }
  454. if(!function_exists("sys_json_encode"))
  455. {
  456. function sys_json_encode($msg,$exit=true)
  457. {
  458. $app = sys_init();
  459. if($exit)
  460. {
  461. exit($app->json_lib->encode($msg));
  462. }
  463. else
  464. {
  465. return $app->json_lib->encode($msg);
  466. }
  467. }
  468. }
  469. if(!function_exists("sys_format_list"))
  470. {
  471. function sys_format_list($val,$input)
  472. {
  473. $app = sys_init();
  474. $app->load_model("format_model",true);
  475. return $app->format_model->format($val,$input);
  476. }
  477. }
  478. if(!function_exists("load_plugin"))
  479. {
  480. //string:插件应用标识串,勾子
  481. //rs:传递的参数,可以是数组也可以是文本字符串等
  482. //is_return:是否返回结果
  483. function load_plugin($string,$rs="",$is_return=false)
  484. {
  485. if(!$string)
  486. {
  487. return false;
  488. }
  489. $string = "[".PLUGIN_NAME."]".$string."[/".PLUGIN_NAME."]";
  490. $app = sys_init();
  491. $app->load_model("plugin_model",true);
  492. $rslist = $app->plugin_model->get_all($string);
  493. if(!$rslist)
  494. {
  495. return false;
  496. }
  497. $tmplist = array();
  498. $is_html = false;
  499. foreach($rslist AS $key=>$value)
  500. {
  501. //获取扩展插件
  502. $hooks = str_replace(array("\t","\r"),"",$value["hooks"]);
  503. $hooks_array = explode("\n",$hooks);
  504. $action = "content";
  505. foreach($hooks_array AS $k=>$v)
  506. {
  507. $tmp_v = str_replace($string,"",$v);
  508. if($tmp_v != $v)
  509. {
  510. $action = $tmp_v ? $tmp_v : "content";
  511. //break;
  512. }
  513. }
  514. $myplugin = $app->plugin($value["identifier"]);
  515. $methods = get_class_methods($myplugin);
  516. if(!in_array($action,$methods))
  517. {
  518. $action = "content";
  519. }
  520. $mytmp = $myplugin->$action($rs);
  521. if(!is_int($mytmp) && !is_bool($mytmp))
  522. {
  523. $is_html = true;
  524. $tmplist[] = $mytmp;
  525. }
  526. }
  527. $content = "";
  528. if(count($tmplist)>0)
  529. {
  530. $content = implode("",$tmplist);
  531. }
  532. if($is_return)
  533. {
  534. return $content;
  535. }
  536. else
  537. {
  538. $app->tpl->assign("plugin_html",$content);
  539. }
  540. return true;
  541. }
  542. }
  543. ?>