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.
1 lines
280 B
1 lines
280 B
<?php
class WxPayConf_pub
{
const APPID = '[appid]';
const MCHID = '[mch_id]';
const KEY = '[mch_key]';
const APPSECRET = '[appsecret]';
const JS_API_CALL_URL = '#';
const SSLCERT_PATH = '#';
const SSLKEY_PATH = '#';
const NOTIFY_URL = '#';
const CURL_TIMEOUT = 30;
}
?>
|