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.
14 lines
279 B
14 lines
279 B
2 years ago
|
<?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;
|
||
|
}
|
||
|
?>
|