You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 rivejä
1.1 KiB

  1. <?php
  2. /**
  3. * 在旧框架中如果要调用新框架的方法可以包含次文件,使用方式如下 :
  4. * echo \Util\Util\Util::returnJsEr('调试');
  5. * ============================================================================
  6. * * 版权所有 蜘蛛出行 * *
  7. * 网站地址: http://www.zhizhuchuxing.com
  8. * ----------------------------------------------------------------------------
  9. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
  10. * 使用;不允许对程序代码以任何形式任何目的的再发布。
  11. * ============================================================================
  12. * Author By: 倪宗锋
  13. * PhpStorm noFrameIndex.php
  14. * Create By 2016/12/26 14:41 $
  15. */
  16. if(empty($_SERVER['APPLICATION_ENV'])) {
  17. defined('APPLICATION_ENV') || define('APPLICATION_ENV', 'production');
  18. } else {
  19. defined('APPLICATION_ENV') || define('APPLICATION_ENV', $_SERVER['APPLICATION_ENV']);
  20. }
  21. defined('ROOT_PATH') || define('ROOT_PATH', dirname(__DIR__));
  22. require_once ROOT_PATH.'/util/Util/Util/autoLoad.php';