<?php
namespace appWexinpaycontroller;
use thinkController;
class WeixinPay 확장 컨트롤러
{
//백엔드 홈페이지
// PHP 환경 감지
if (version_compare( PHP_VERSION,'5.3.0','<')) die('PHP > 5.3.0 필요 !')
// $_GET['m']='Admin'
/ / 활성화하려면 디버깅 모드에서는 개발 단계에서 배포 단계 주석을 활성화하거나 false로 설정하는 것이 좋습니다
define('APP_DEBUG',True)
//모듈 컨트롤러 및 메서드 지정
$_GET['m']= 'WexinApi';
$_GET['c']='WeixinPay';
$_GET['a']='notify';
// 애플리케이션 디렉토리 정의
define('APP_PATH','./ Application/')
define("APP_ROOT",dirname(__FILE__));
//ThinkPHP 항목 파일 소개
require './ThinkCore/ThinkCore.php'
//
}
}