如何使用微擎常用的函数以及变量,且不需要在微信内使用(人人商城中),代码如下:

class hongfuPay
{
//业务逻辑代码
 
}
error_reporting(0);
define('IN_MOBILE', true);
// \framework\bootstrap.inc.php  加载各种静态资源,定义大量$_W下变量的值,判断是否安装微擎,设置phpini的值,$_W[]判断http发送的方式
require dirname(__FILE__) . '/../../../../framework/bootstrap.inc.php';  
// /addons/ewei_shopv2/defines.php  定义人人商城使用的各种常量
require IA_ROOT . '/addons/ewei_shopv2/defines.php';
//  /addons/ewei_shopv2/core/inc/functions.php 人人商城封装的一些函数
require IA_ROOT . '/addons/ewei_shopv2/core/inc/functions.php';
//  /addons/ewei_shopv2/core/inc/plugin_model.php       
require IA_ROOT . '/addons/ewei_shopv2/core/inc/plugin_model.php';
require IA_ROOT . '/addons/ewei_shopv2/core/inc/com_model.php';
new hongfuPay();

发表评论

邮箱地址不会被公开。 必填项已用*标注