Sorry

This feed does not validate.

In addition, interoperability with the widest range of feed readers could be improved by implementing the following recommendation.

Source: http://kuknus.com/call-girls-categories/mumbai/

  1. <?php
  2.  
  3.  
  4. /*
  5. '软件名称:苹果CMS 源码库:https://github.com/magicblack
  6. '--------------------------------------------------------
  7. 'Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. '遵循Apache2开源协议发布,并提供免费使用。
  9. '--------------------------------------------------------
  10. */
  11. header('Content-Type:text/html;charset=utf-8');
  12. // 检测PHP环境
  13. if(version_compare(PHP_VERSION,'5.5.0','<'))  die('PHP版本需要>=5.5,请升级【PHP version requires > = 5.5,please upgrade】');
  14. //超时时间
  15. @ini_set('max_execution_time', '0');
  16. //内存限制 取消内存限制
  17. @ini_set("memory_limit",'-1');
  18. // 定义应用目录
  19. define('ROOT_PATH', __DIR__ . '/');
  20. define('APP_PATH', __DIR__ . '/application/');
  21. define('MAC_COMM', __DIR__.'/application/common/common/');
  22. define('MAC_HOME_COMM', __DIR__.'/application/index/common/');
  23. define('MAC_ADMIN_COMM', __DIR__.'/application/admin/common/');
  24. define('MAC_START_TIME', microtime(true) );
  25. define('BIND_MODULE','index');
  26. define('ENTRANCE', 'index');
  27. $in_file = rtrim($_SERVER['SCRIPT_NAME'],'/');
  28.  
  29. if(substr($in_file,strlen($in_file)-4)!=='.php'){
  30.    $in_file = substr($in_file,0,strpos($in_file,'.php')) .'.php';
  31. }
  32. define('IN_FILE',$in_file);
  33. if(!is_file('./application/data/install/install.lock')) {
  34.    header("Location: ./install.php");
  35.    exit;
  36. }
  37. if (!@mb_check_encoding($_SERVER['PATH_INFO'], 'utf-8')){
  38.    $_SERVER['PATH_INFO']=@mb_convert_encoding($_SERVER['PATH_INFO'], 'UTF-8', 'GBK');
  39. }
  40.  
  41. // 加载框架引导文件
  42. require __DIR__ . '/thinkphp/start.php';
  43.  
  44.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda