客户就是不申请服务号,又不愿意接入公众号,就是想能展示就行。。。但是这个系统如果不接入微信公众号,在微信无法打开。
修改mobile/includes/init.php
去掉最后一个循环if(0)
if(0){
$testurl=$_SESSION['user_id'].'-'.$_SESSION['user_name'].'-'.$GLOBALS['ecs']->url().' http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
$output= strftime("%Y%m%d %H:%M:%S", time()) . "\n" ;
$output .= $testurl."\n" ;
$output.="\n";
$log_path=ROOT_PATH . "/data/log/";
if(!is_dir($log_path)){
@mkdir($log_path, 0777, true);
}
$output_date= strftime("%Y%m%d", time());
file_put_contents($log_path.$output_date."_int.txt", $output, FILE_APPEND | LOCK_EX);
}
$is_weixin_browser = is_weixin_browser();
if($is_weixin_browser){
if(!preg_match('/region.php/i', $_SERVER['REQUEST_URI'])){
include_once(ROOT_PATH . 'weixin/weixin_oauth.php');
}
}
function is_weixin_browser()
{
$useragent = addslashes($_SERVER['HTTP_USER_AGENT']);
if(strpos($useragent, 'MicroMessenger') === false && strpos($useragent, 'Windows Phone') === false )
{
return false;
}
else
{
return true;
}
}