functions.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2012 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. /**
  12. * Think 标准模式公共函数库
  13. * @category Think
  14. * @package Common
  15. * @author liu21st <liu21st@gmail.com>
  16. */
  17. /**
  18. * 错误输出
  19. * @param mixed $error 错误
  20. * @return void
  21. */
  22. function halt($error) {
  23. $e = array();
  24. if (APP_DEBUG) {
  25. //调试模式下输出错误信息
  26. if (!is_array($error)) {
  27. $trace = debug_backtrace();
  28. $e['message'] = $error;
  29. $e['file'] = $trace[0]['file'];
  30. $e['line'] = $trace[0]['line'];
  31. ob_start();
  32. debug_print_backtrace();
  33. $e['trace'] = ob_get_clean();
  34. } else {
  35. $e = $error;
  36. }
  37. } else {
  38. //否则定向到错误页面
  39. $error_page = C('ERROR_PAGE');
  40. if (!empty($error_page)) {
  41. redirect($error_page);
  42. } else {
  43. if (C('SHOW_ERROR_MSG'))
  44. $e['message'] = is_array($error) ? $error['message'] : $error;
  45. else
  46. $e['message'] = C('ERROR_MESSAGE');
  47. }
  48. }
  49. // 包含异常页面模板
  50. include C('TMPL_EXCEPTION_FILE');
  51. exit;
  52. }
  53. /**
  54. * 自定义异常处理
  55. * @param string $msg 异常消息
  56. * @param string $type 异常类型 默认为ThinkException
  57. * @param integer $code 异常代码 默认为0
  58. * @return void
  59. */
  60. function throw_exception($msg, $type='ThinkException', $code=0) {
  61. if (class_exists($type, false))
  62. throw new $type($msg, $code);
  63. else
  64. halt($msg); // 异常类型不存在则输出错误信息字串
  65. }
  66. /**
  67. * 浏览器友好的变量输出
  68. * @param mixed $var 变量
  69. * @param boolean $echo 是否输出 默认为True 如果为false 则返回输出字符串
  70. * @param string $label 标签 默认为空
  71. * @param boolean $strict 是否严谨 默认为true
  72. * @return void|string
  73. */
  74. function dump($var, $echo=true, $label=null, $strict=true) {
  75. $label = ($label === null) ? '' : rtrim($label) . ' ';
  76. if (!$strict) {
  77. if (ini_get('html_errors')) {
  78. $output = print_r($var, true);
  79. $output = '<pre>' . $label . htmlspecialchars($output, ENT_QUOTES) . '</pre>';
  80. } else {
  81. $output = $label . print_r($var, true);
  82. }
  83. } else {
  84. ob_start();
  85. var_dump($var);
  86. $output = ob_get_clean();
  87. if (!extension_loaded('xdebug')) {
  88. $output = preg_replace('/\]\=\>\n(\s+)/m', '] => ', $output);
  89. $output = '<pre>' . $label . htmlspecialchars($output, ENT_QUOTES) . '</pre>';
  90. }
  91. }
  92. if ($echo) {
  93. echo($output);
  94. return null;
  95. }else
  96. return $output;
  97. }
  98. /**
  99. * 404处理
  100. * 调试模式会抛异常
  101. * 部署模式下面传入url参数可以指定跳转页面,否则发送404信息
  102. * @param string $msg 提示信息
  103. * @param string $url 跳转URL地址
  104. * @return void
  105. */
  106. function _404($msg='',$url='') {
  107. APP_DEBUG && throw_exception($msg);
  108. if($msg && C('LOG_EXCEPTION_RECORD')) Log::write($msg);
  109. if(empty($url) && C('URL_404_REDIRECT')) {
  110. $url = C('URL_404_REDIRECT');
  111. }
  112. if($url) {
  113. redirect($url);
  114. }else{
  115. send_http_status(404);
  116. exit;
  117. }
  118. }
  119. /**
  120. * 设置当前页面的布局
  121. * @param string|false $layout 布局名称 为false的时候表示关闭布局
  122. * @return void
  123. */
  124. function layout($layout) {
  125. if(false !== $layout) {
  126. // 开启布局
  127. C('LAYOUT_ON',true);
  128. if(is_string($layout)) { // 设置新的布局模板
  129. C('LAYOUT_NAME',$layout);
  130. }
  131. }else{// 临时关闭布局
  132. C('LAYOUT_ON',false);
  133. }
  134. }
  135. /**
  136. * URL组装 支持不同URL模式
  137. * @param string $url URL表达式,格式:'[分组/模块/操作#锚点@域名]?参数1=值1&参数2=值2...'
  138. * @param string|array $vars 传入的参数,支持数组和字符串
  139. * @param string $suffix 伪静态后缀,默认为true表示获取配置值
  140. * @param boolean $redirect 是否跳转,如果设置为true则表示跳转到该URL地址
  141. * @param boolean $domain 是否显示域名
  142. * @return string
  143. */
  144. function U($url='',$vars='',$suffix=true,$redirect=false,$domain=false) {
  145. // 解析URL
  146. $info = parse_url($url);
  147. $url = !empty($info['path'])?$info['path']:ACTION_NAME;
  148. if(isset($info['fragment'])) { // 解析锚点
  149. $anchor = $info['fragment'];
  150. if(false !== strpos($anchor,'?')) { // 解析参数
  151. list($anchor,$info['query']) = explode('?',$anchor,2);
  152. }
  153. if(false !== strpos($anchor,'@')) { // 解析域名
  154. list($anchor,$host) = explode('@',$anchor, 2);
  155. }
  156. }elseif(false !== strpos($url,'@')) { // 解析域名
  157. list($url,$host) = explode('@',$info['path'], 2);
  158. }
  159. // 解析子域名
  160. if(isset($host)) {
  161. $domain = $host.(strpos($host,'.')?'':strstr($_SERVER['HTTP_HOST'],'.'));
  162. }elseif($domain===true){
  163. $domain = $_SERVER['HTTP_HOST'];
  164. if(C('APP_SUB_DOMAIN_DEPLOY') ) { // 开启子域名部署
  165. $domain = $domain=='localhost'?'localhost':'www'.strstr($_SERVER['HTTP_HOST'],'.');
  166. // '子域名'=>array('项目[/分组]');
  167. foreach (C('APP_SUB_DOMAIN_RULES') as $key => $rule) {
  168. if(false === strpos($key,'*') && 0=== strpos($url,$rule[0])) {
  169. $domain = $key.strstr($domain,'.'); // 生成对应子域名
  170. $url = substr_replace($url,'',0,strlen($rule[0]));
  171. break;
  172. }
  173. }
  174. }
  175. }
  176. // 解析参数
  177. if(is_string($vars)) { // aaa=1&bbb=2 转换成数组
  178. parse_str($vars,$vars);
  179. }elseif(!is_array($vars)){
  180. $vars = array();
  181. }
  182. if(isset($info['query'])) { // 解析地址里面参数 合并到vars
  183. parse_str($info['query'],$params);
  184. $vars = array_merge($params,$vars);
  185. }
  186. // URL组装
  187. $depr = C('URL_PATHINFO_DEPR');
  188. if($url) {
  189. if(0=== strpos($url,'/')) {// 定义路由
  190. $route = true;
  191. $url = substr($url,1);
  192. if('/' != $depr) {
  193. $url = str_replace('/',$depr,$url);
  194. }
  195. }else{
  196. if('/' != $depr) { // 安全替换
  197. $url = str_replace('/',$depr,$url);
  198. }
  199. // 解析分组、模块和操作
  200. $url = trim($url,$depr);
  201. $path = explode($depr,$url);
  202. $var = array();
  203. $var[C('VAR_ACTION')] = !empty($path)?array_pop($path):ACTION_NAME;
  204. $var[C('VAR_MODULE')] = !empty($path)?array_pop($path):MODULE_NAME;
  205. if($maps = C('URL_ACTION_MAP')) {
  206. if(isset($maps[strtolower($var[C('VAR_MODULE')])])) {
  207. $maps = $maps[strtolower($var[C('VAR_MODULE')])];
  208. if($action = array_search(strtolower($var[C('VAR_ACTION')]),$maps)){
  209. $var[C('VAR_ACTION')] = $action;
  210. }
  211. }
  212. }
  213. if($maps = C('URL_MODULE_MAP')) {
  214. if($module = array_search(strtolower($var[C('VAR_MODULE')]),$maps)){
  215. $var[C('VAR_MODULE')] = $module;
  216. }
  217. }
  218. if(C('URL_CASE_INSENSITIVE')) {
  219. $var[C('VAR_MODULE')] = parse_name($var[C('VAR_MODULE')]);
  220. }
  221. if(!C('APP_SUB_DOMAIN_DEPLOY') && C('APP_GROUP_LIST')) {
  222. if(!empty($path)) {
  223. $group = array_pop($path);
  224. $var[C('VAR_GROUP')] = $group;
  225. }else{
  226. if(GROUP_NAME != C('DEFAULT_GROUP')) {
  227. $var[C('VAR_GROUP')]= GROUP_NAME;
  228. }
  229. }
  230. if(C('URL_CASE_INSENSITIVE') && isset($var[C('VAR_GROUP')])) {
  231. $var[C('VAR_GROUP')] = strtolower($var[C('VAR_GROUP')]);
  232. }
  233. }
  234. }
  235. }
  236. if(C('URL_MODEL') == 0) { // 普通模式URL转换
  237. $url = __APP__.'?'.http_build_query(array_reverse($var));
  238. if(!empty($vars)) {
  239. $vars = urldecode(http_build_query($vars));
  240. $url .= '&'.$vars;
  241. }
  242. }else{ // PATHINFO模式或者兼容URL模式
  243. if(isset($route)) {
  244. $url = __APP__.'/'.rtrim($url,$depr);
  245. }else{
  246. $url = __APP__.'/'.implode($depr,array_reverse($var));
  247. }
  248. if(!empty($vars)) { // 添加参数
  249. foreach ($vars as $var => $val){
  250. if('' !== trim($val)) $url .= $depr . $var . $depr . urlencode($val);
  251. }
  252. }
  253. if($suffix) {
  254. $suffix = $suffix===true?C('URL_HTML_SUFFIX'):$suffix;
  255. if($pos = strpos($suffix, '|')){
  256. $suffix = substr($suffix, 0, $pos);
  257. }
  258. if($suffix && '/' != substr($url,-1)){
  259. $url .= '.'.ltrim($suffix,'.');
  260. }
  261. }
  262. }
  263. if(isset($anchor)){
  264. $url .= '#'.$anchor;
  265. }
  266. if($domain) {
  267. $url = (is_ssl()?'https://':'http://').$domain.$url;
  268. }
  269. if($redirect) // 直接跳转URL
  270. redirect($url);
  271. else
  272. return $url;
  273. }
  274. /**
  275. * 渲染输出Widget
  276. * @param string $name Widget名称
  277. * @param array $data 传入的参数
  278. * @param boolean $return 是否返回内容
  279. * @param string $path Widget所在路径
  280. * @return void
  281. */
  282. function W($name, $data=array(), $return=false,$path='') {
  283. $class = $name . 'Widget';
  284. $path = empty($path) ? BASE_LIB_PATH : $path;
  285. require_cache($path . 'Widget/' . $class . '.class.php');
  286. if (!class_exists($class))
  287. throw_exception(L('_CLASS_NOT_EXIST_') . ':' . $class);
  288. $widget = Think::instance($class);
  289. $content = $widget->render($data);
  290. if ($return)
  291. return $content;
  292. else
  293. echo $content;
  294. }
  295. /**
  296. * 过滤器方法 引用传值
  297. * @param string $name 过滤器名称
  298. * @param string $content 要过滤的内容
  299. * @return void
  300. */
  301. function filter($name, &$content) {
  302. $class = $name . 'Filter';
  303. require_cache(BASE_LIB_PATH . 'Filter/' . $class . '.class.php');
  304. $filter = new $class();
  305. $content = $filter->run($content);
  306. }
  307. /**
  308. * 判断是否SSL协议
  309. * @return boolean
  310. */
  311. function is_ssl() {
  312. if(isset($_SERVER['HTTPS']) && ('1' == $_SERVER['HTTPS'] || 'on' == strtolower($_SERVER['HTTPS']))){
  313. return true;
  314. }elseif(isset($_SERVER['SERVER_PORT']) && ('443' == $_SERVER['SERVER_PORT'] )) {
  315. return true;
  316. }
  317. return false;
  318. }
  319. /**
  320. * URL重定向
  321. * @param string $url 重定向的URL地址
  322. * @param integer $time 重定向的等待时间(秒)
  323. * @param string $msg 重定向前的提示信息
  324. * @return void
  325. */
  326. function redirect($url, $time=0, $msg='') {
  327. //多行URL地址支持
  328. $url = str_replace(array("\n", "\r"), '', $url);
  329. if (empty($msg))
  330. $msg = "系统将在{$time}秒之后自动跳转到{$url}!";
  331. if (!headers_sent()) {
  332. // redirect
  333. if (0 === $time) {
  334. header('Location: ' . $url);
  335. } else {
  336. header("refresh:{$time};url={$url}");
  337. echo($msg);
  338. }
  339. exit();
  340. } else {
  341. $str = "<meta http-equiv='Refresh' content='{$time};URL={$url}'>";
  342. if ($time != 0)
  343. $str .= $msg;
  344. exit($str);
  345. }
  346. }
  347. /**
  348. * 缓存管理
  349. * @param mixed $name 缓存名称,如果为数组表示进行缓存设置
  350. * @param mixed $value 缓存值
  351. * @param mixed $options 缓存参数
  352. * @return mixed
  353. */
  354. function S($name,$value='',$options=null) {
  355. static $cache = '';
  356. if(is_array($options) && empty($cache)){
  357. // 缓存操作的同时初始化
  358. $type = isset($options['type'])?$options['type']:'';
  359. $cache = Cache::getInstance($type,$options);
  360. }elseif(is_array($name)) { // 缓存初始化
  361. $type = isset($name['type'])?$name['type']:'';
  362. $cache = Cache::getInstance($type,$name);
  363. return $cache;
  364. }elseif(empty($cache)) { // 自动初始化
  365. $cache = Cache::getInstance();
  366. }
  367. if(''=== $value){ // 获取缓存
  368. return $cache->get($name);
  369. }elseif(is_null($value)) { // 删除缓存
  370. return $cache->rm($name);
  371. }else { // 缓存数据
  372. if(is_array($options)) {
  373. $expire = isset($options['expire'])?$options['expire']:NULL;
  374. }else{
  375. $expire = is_numeric($options)?$options:NULL;
  376. }
  377. return $cache->set($name, $value, $expire);
  378. }
  379. }
  380. // S方法的别名 已经废除 不再建议使用
  381. function cache($name,$value='',$options=null){
  382. return S($name,$value,$options);
  383. }
  384. /**
  385. * 快速文件数据读取和保存 针对简单类型数据 字符串、数组
  386. * @param string $name 缓存名称
  387. * @param mixed $value 缓存值
  388. * @param string $path 缓存路径
  389. * @return mixed
  390. */
  391. function F($name, $value='', $path=DATA_PATH) {
  392. static $_cache = array();
  393. $filename = $path . $name . '.php';
  394. if ('' !== $value) {
  395. if (is_null($value)) {
  396. // 删除缓存
  397. return false !== strpos($name,'*')?array_map("unlink", glob($filename)):unlink($filename);
  398. } else {
  399. // 缓存数据
  400. $dir = dirname($filename);
  401. // 目录不存在则创建
  402. if (!is_dir($dir))
  403. mkdir($dir,0755,true);
  404. $_cache[$name] = $value;
  405. return file_put_contents($filename, strip_whitespace("<?php\treturn " . var_export($value, true) . ";?>"));
  406. }
  407. }
  408. if (isset($_cache[$name]))
  409. return $_cache[$name];
  410. // 获取缓存数据
  411. if (is_file($filename)) {
  412. $value = include $filename;
  413. $_cache[$name] = $value;
  414. } else {
  415. $value = false;
  416. }
  417. return $value;
  418. }
  419. /**
  420. * 取得对象实例 支持调用类的静态方法
  421. * @param string $name 类名
  422. * @param string $method 方法名,如果为空则返回实例化对象
  423. * @param array $args 调用参数
  424. * @return object
  425. */
  426. function get_instance_of($name, $method='', $args=array()) {
  427. static $_instance = array();
  428. $identify = empty($args) ? $name . $method : $name . $method . to_guid_string($args);
  429. if (!isset($_instance[$identify])) {
  430. if (class_exists($name)) {
  431. $o = new $name();
  432. if (method_exists($o, $method)) {
  433. if (!empty($args)) {
  434. $_instance[$identify] = call_user_func_array(array(&$o, $method), $args);
  435. } else {
  436. $_instance[$identify] = $o->$method();
  437. }
  438. }
  439. else
  440. $_instance[$identify] = $o;
  441. }
  442. else
  443. halt(L('_CLASS_NOT_EXIST_') . ':' . $name);
  444. }
  445. return $_instance[$identify];
  446. }
  447. /**
  448. * 根据PHP各种类型变量生成唯一标识号
  449. * @param mixed $mix 变量
  450. * @return string
  451. */
  452. function to_guid_string($mix) {
  453. if (is_object($mix) && function_exists('spl_object_hash')) {
  454. return spl_object_hash($mix);
  455. } elseif (is_resource($mix)) {
  456. $mix = get_resource_type($mix) . strval($mix);
  457. } else {
  458. $mix = serialize($mix);
  459. }
  460. return md5($mix);
  461. }
  462. /**
  463. * XML编码
  464. * @param mixed $data 数据
  465. * @param string $root 根节点名
  466. * @param string $item 数字索引的子节点名
  467. * @param string $attr 根节点属性
  468. * @param string $id 数字索引子节点key转换的属性名
  469. * @param string $encoding 数据编码
  470. * @return string
  471. */
  472. function xml_encode($data, $root='think', $item='item', $attr='', $id='id', $encoding='utf-8') {
  473. if(is_array($attr)){
  474. $_attr = array();
  475. foreach ($attr as $key => $value) {
  476. $_attr[] = "{$key}=\"{$value}\"";
  477. }
  478. $attr = implode(' ', $_attr);
  479. }
  480. $attr = trim($attr);
  481. $attr = empty($attr) ? '' : " {$attr}";
  482. $xml = "<?xml version=\"1.0\" encoding=\"{$encoding}\"?>";
  483. $xml .= "<{$root}{$attr}>";
  484. $xml .= data_to_xml($data, $item, $id);
  485. $xml .= "</{$root}>";
  486. return $xml;
  487. }
  488. /**
  489. * 数据XML编码
  490. * @param mixed $data 数据
  491. * @param string $item 数字索引时的节点名称
  492. * @param string $id 数字索引key转换为的属性名
  493. * @return string
  494. */
  495. function data_to_xml($data, $item='item', $id='id') {
  496. $xml = $attr = '';
  497. foreach ($data as $key => $val) {
  498. if(is_numeric($key)){
  499. $id && $attr = " {$id}=\"{$key}\"";
  500. $key = $item;
  501. }
  502. $xml .= "<{$key}{$attr}>";
  503. $xml .= (is_array($val) || is_object($val)) ? data_to_xml($val, $item, $id) : $val;
  504. $xml .= "</{$key}>";
  505. }
  506. return $xml;
  507. }
  508. /**
  509. * session管理函数
  510. * @param string|array $name session名称 如果为数组则表示进行session设置
  511. * @param mixed $value session值
  512. * @return mixed
  513. */
  514. function session($name,$value='') {
  515. $prefix = C('SESSION_PREFIX');
  516. if(is_array($name)) { // session初始化 在session_start 之前调用
  517. if(isset($name['prefix'])) C('SESSION_PREFIX',$name['prefix']);
  518. if(C('VAR_SESSION_ID') && isset($_REQUEST[C('VAR_SESSION_ID')])){
  519. session_id($_REQUEST[C('VAR_SESSION_ID')]);
  520. }elseif(isset($name['id'])) {
  521. session_id($name['id']);
  522. }
  523. ini_set('session.auto_start', 0);
  524. if(isset($name['name'])) session_name($name['name']);
  525. if(isset($name['path'])) session_save_path($name['path']);
  526. if(isset($name['domain'])) ini_set('session.cookie_domain', $name['domain']);
  527. if(isset($name['expire'])) ini_set('session.gc_maxlifetime', $name['expire']);
  528. if(isset($name['use_trans_sid'])) ini_set('session.use_trans_sid', $name['use_trans_sid']?1:0);
  529. if(isset($name['use_cookies'])) ini_set('session.use_cookies', $name['use_cookies']?1:0);
  530. if(isset($name['cache_limiter'])) session_cache_limiter($name['cache_limiter']);
  531. if(isset($name['cache_expire'])) session_cache_expire($name['cache_expire']);
  532. if(isset($name['type'])) C('SESSION_TYPE',$name['type']);
  533. if(C('SESSION_TYPE')) { // 读取session驱动
  534. $class = 'Session'. ucwords(strtolower(C('SESSION_TYPE')));
  535. // 检查驱动类
  536. if(require_cache(EXTEND_PATH.'Driver/Session/'.$class.'.class.php')) {
  537. $hander = new $class();
  538. $hander->execute();
  539. }else {
  540. // 类没有定义
  541. throw_exception(L('_CLASS_NOT_EXIST_').': ' . $class);
  542. }
  543. }
  544. // 启动session
  545. if(C('SESSION_AUTO_START')) session_start();
  546. }elseif('' === $value){
  547. if(0===strpos($name,'[')) { // session 操作
  548. if('[pause]'==$name){ // 暂停session
  549. session_write_close();
  550. }elseif('[start]'==$name){ // 启动session
  551. session_start();
  552. }elseif('[destroy]'==$name){ // 销毁session
  553. $_SESSION = array();
  554. session_unset();
  555. session_destroy();
  556. }elseif('[regenerate]'==$name){ // 重新生成id
  557. session_regenerate_id();
  558. }
  559. }elseif(0===strpos($name,'?')){ // 检查session
  560. $name = substr($name,1);
  561. if(strpos($name,'.')){ // 支持数组
  562. list($name1,$name2) = explode('.',$name);
  563. return $prefix?isset($_SESSION[$prefix][$name1][$name2]):isset($_SESSION[$name1][$name2]);
  564. }else{
  565. return $prefix?isset($_SESSION[$prefix][$name]):isset($_SESSION[$name]);
  566. }
  567. }elseif(is_null($name)){ // 清空session
  568. if($prefix) {
  569. unset($_SESSION[$prefix]);
  570. }else{
  571. $_SESSION = array();
  572. }
  573. }elseif($prefix){ // 获取session
  574. if(strpos($name,'.')){
  575. list($name1,$name2) = explode('.',$name);
  576. return isset($_SESSION[$prefix][$name1][$name2])?$_SESSION[$prefix][$name1][$name2]:null;
  577. }else{
  578. return isset($_SESSION[$prefix][$name])?$_SESSION[$prefix][$name]:null;
  579. }
  580. }else{
  581. if(strpos($name,'.')){
  582. list($name1,$name2) = explode('.',$name);
  583. return isset($_SESSION[$name1][$name2])?$_SESSION[$name1][$name2]:null;
  584. }else{
  585. return isset($_SESSION[$name])?$_SESSION[$name]:null;
  586. }
  587. }
  588. }elseif(is_null($value)){ // 删除session
  589. if($prefix){
  590. unset($_SESSION[$prefix][$name]);
  591. }else{
  592. unset($_SESSION[$name]);
  593. }
  594. }else{ // 设置session
  595. if($prefix){
  596. if (!is_array($_SESSION[$prefix])) {
  597. $_SESSION[$prefix] = array();
  598. }
  599. $_SESSION[$prefix][$name] = $value;
  600. }else{
  601. $_SESSION[$name] = $value;
  602. }
  603. }
  604. }
  605. /**
  606. * Cookie 设置、获取、删除
  607. * @param string $name cookie名称
  608. * @param mixed $value cookie值
  609. * @param mixed $options cookie参数
  610. * @return mixed
  611. */
  612. function cookie($name, $value='', $option=null) {
  613. // 默认设置
  614. $config = array(
  615. 'prefix' => C('COOKIE_PREFIX'), // cookie 名称前缀
  616. 'expire' => C('COOKIE_EXPIRE'), // cookie 保存时间
  617. 'path' => C('COOKIE_PATH'), // cookie 保存路径
  618. 'domain' => C('COOKIE_DOMAIN'), // cookie 有效域名
  619. );
  620. // 参数设置(会覆盖黙认设置)
  621. if (!is_null($option)) {
  622. if (is_numeric($option))
  623. $option = array('expire' => $option);
  624. elseif (is_string($option))
  625. parse_str($option, $option);
  626. $config = array_merge($config, array_change_key_case($option));
  627. }
  628. // 清除指定前缀的所有cookie
  629. if (is_null($name)) {
  630. if (empty($_COOKIE))
  631. return;
  632. // 要删除的cookie前缀,不指定则删除config设置的指定前缀
  633. $prefix = empty($value) ? $config['prefix'] : $value;
  634. if (!empty($prefix)) {// 如果前缀为空字符串将不作处理直接返回
  635. foreach ($_COOKIE as $key => $val) {
  636. if (0 === stripos($key, $prefix)) {
  637. setcookie($key, '', time() - 3600, $config['path'], $config['domain']);
  638. unset($_COOKIE[$key]);
  639. }
  640. }
  641. }
  642. return;
  643. }
  644. $name = $config['prefix'] . $name;
  645. if ('' === $value) {
  646. if(isset($_COOKIE[$name])){
  647. $value = $_COOKIE[$name];
  648. if(0===strpos($value,'think:')){
  649. $value = substr($value,6);
  650. return array_map('urldecode',json_decode(MAGIC_QUOTES_GPC?stripslashes($value):$value,true));
  651. }else{
  652. return $value;
  653. }
  654. }else{
  655. return null;
  656. }
  657. } else {
  658. if (is_null($value)) {
  659. setcookie($name, '', time() - 3600, $config['path'], $config['domain']);
  660. unset($_COOKIE[$name]); // 删除指定cookie
  661. } else {
  662. // 设置cookie
  663. if(is_array($value)){
  664. $value = 'think:'.json_encode(array_map('urlencode',$value));
  665. }
  666. $expire = !empty($config['expire']) ? time() + intval($config['expire']) : 0;
  667. setcookie($name, $value, $expire, $config['path'], $config['domain']);
  668. $_COOKIE[$name] = $value;
  669. }
  670. }
  671. }
  672. /**
  673. * 加载动态扩展文件
  674. * @return void
  675. */
  676. function load_ext_file() {
  677. // 加载自定义外部文件
  678. if(C('LOAD_EXT_FILE')) {
  679. $files = explode(',',C('LOAD_EXT_FILE'));
  680. foreach ($files as $file){
  681. $file = COMMON_PATH.$file.'.php';
  682. if(is_file($file)) include $file;
  683. }
  684. }
  685. // 加载自定义的动态配置文件
  686. if(C('LOAD_EXT_CONFIG')) {
  687. $configs = C('LOAD_EXT_CONFIG');
  688. if(is_string($configs)) $configs = explode(',',$configs);
  689. foreach ($configs as $key=>$config){
  690. $file = CONF_PATH.$config.'.php';
  691. if(is_file($file)) {
  692. is_numeric($key)?C(include $file):C($key,include $file);
  693. }
  694. }
  695. }
  696. }
  697. /**
  698. * 获取客户端IP地址
  699. * @param integer $type 返回类型 0 返回IP地址 1 返回IPV4地址数字
  700. * @return mixed
  701. */
  702. function get_client_ip($type = 0) {
  703. $type = $type ? 1 : 0;
  704. static $ip = NULL;
  705. if ($ip !== NULL) return $ip[$type];
  706. if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
  707. $arr = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
  708. $pos = array_search('unknown',$arr);
  709. if(false !== $pos) unset($arr[$pos]);
  710. $ip = trim($arr[0]);
  711. }elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
  712. $ip = $_SERVER['HTTP_CLIENT_IP'];
  713. }elseif (isset($_SERVER['REMOTE_ADDR'])) {
  714. $ip = $_SERVER['REMOTE_ADDR'];
  715. }
  716. // IP地址合法验证
  717. $long = sprintf("%u",ip2long($ip));
  718. $ip = $long ? array($ip, $long) : array('0.0.0.0', 0);
  719. return $ip[$type];
  720. }
  721. /**
  722. * 发送HTTP状态
  723. * @param integer $code 状态码
  724. * @return void
  725. */
  726. function send_http_status($code) {
  727. static $_status = array(
  728. // Informational 1xx
  729. 100 => 'Continue',
  730. 101 => 'Switching Protocols',
  731. // Success 2xx
  732. 200 => 'OK',
  733. 201 => 'Created',
  734. 202 => 'Accepted',
  735. 203 => 'Non-Authoritative Information',
  736. 204 => 'No Content',
  737. 205 => 'Reset Content',
  738. 206 => 'Partial Content',
  739. // Redirection 3xx
  740. 300 => 'Multiple Choices',
  741. 301 => 'Moved Permanently',
  742. 302 => 'Moved Temporarily ', // 1.1
  743. 303 => 'See Other',
  744. 304 => 'Not Modified',
  745. 305 => 'Use Proxy',
  746. // 306 is deprecated but reserved
  747. 307 => 'Temporary Redirect',
  748. // Client Error 4xx
  749. 400 => 'Bad Request',
  750. 401 => 'Unauthorized',
  751. 402 => 'Payment Required',
  752. 403 => 'Forbidden',
  753. 404 => 'Not Found',
  754. 405 => 'Method Not Allowed',
  755. 406 => 'Not Acceptable',
  756. 407 => 'Proxy Authentication Required',
  757. 408 => 'Request Timeout',
  758. 409 => 'Conflict',
  759. 410 => 'Gone',
  760. 411 => 'Length Required',
  761. 412 => 'Precondition Failed',
  762. 413 => 'Request Entity Too Large',
  763. 414 => 'Request-URI Too Long',
  764. 415 => 'Unsupported Media Type',
  765. 416 => 'Requested Range Not Satisfiable',
  766. 417 => 'Expectation Failed',
  767. // Server Error 5xx
  768. 500 => 'Internal Server Error',
  769. 501 => 'Not Implemented',
  770. 502 => 'Bad Gateway',
  771. 503 => 'Service Unavailable',
  772. 504 => 'Gateway Timeout',
  773. 505 => 'HTTP Version Not Supported',
  774. 509 => 'Bandwidth Limit Exceeded'
  775. );
  776. if(isset($_status[$code])) {
  777. header('HTTP/1.1 '.$code.' '.$_status[$code]);
  778. // 确保FastCGI模式下正常
  779. header('Status:'.$code.' '.$_status[$code]);
  780. }
  781. }
  782. // 过滤表单中的表达式
  783. function filter_exp(&$value){
  784. if (in_array(strtolower($value),array('exp','or'))){
  785. $value .= ' ';
  786. }
  787. }