define ( "GZIP_ENABLE" function_exists ( 'ob_gzhandler' ) ); ob_start ( GZIP_EN解决办法
程序员文章站
2022-05-19 14:36:56
...
define ( "GZIP_ENABLE", function_exists ( 'ob_gzhandler' ) ); ob_start ( GZIP_EN
我重装了wamp之后,为什么我在入口文件加入define ( "GZIP_ENABLE", function_exists ( 'ob_gzhandler' ) );
ob_start ( GZIP_ENABLE ? 'ob_gzhandler' : null );这段代码后就可以正常访问http://localhost/saetp/?m=Register&a=register&wxcount=o-CsGuPRWmejitXUXzfUBzntg77E,
先前是不需要加的,请问是我PHP代码的问题还是wamp配置的问题
------解决方案--------------------
原来是你。还没搞定?
这个应该是环境的问题,当然跟程序的写法也是有关联的。
我重装了wamp之后,为什么我在入口文件加入define ( "GZIP_ENABLE", function_exists ( 'ob_gzhandler' ) );
ob_start ( GZIP_ENABLE ? 'ob_gzhandler' : null );这段代码后就可以正常访问http://localhost/saetp/?m=Register&a=register&wxcount=o-CsGuPRWmejitXUXzfUBzntg77E,
//确定应用名称
define ('APP_NAME','Home');
//确定应用路径
define ('APP_PATH','./Home/');
define('APP_DEBUG', true);
define('PATH', dirname(__FILE__));
define('Server','localhost');
define('Key','123456');
//引入核心文件
define ( "GZIP_ENABLE", function_exists ( 'ob_gzhandler' ) );
ob_start ( GZIP_ENABLE ? 'ob_gzhandler' : null );
// 加载框架入口文件
require( "./ThinkPHP/Extend/Engine/Sae.php");
//require './ThinkPHP/ThinkPHP.php';
先前是不需要加的,请问是我PHP代码的问题还是wamp配置的问题
------解决方案--------------------
原来是你。还没搞定?
这个应该是环境的问题,当然跟程序的写法也是有关联的。
相关文章
相关视频
上一篇: php 判断上传文件大小的示例代码