config.php 704 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. $config = array (
  3. //应用ID,您的APPID。
  4. 'app_id' => "",
  5. //商户私钥,您的原始格式RSA私钥
  6. 'merchant_private_key' => "",
  7. //异步通知地址
  8. 'notify_url' => "http://工程公网访问地址/alipay.trade.wap.pay-PHP-UTF-8/notify_url.php",
  9. //同步跳转
  10. 'return_url' => "http://mitsein.com/alipay.trade.wap.pay-PHP-UTF-8/return_url.php",
  11. //编码格式
  12. 'charset' => "UTF-8",
  13. //签名方式
  14. 'sign_type'=>"RSA2",
  15. //支付宝网关
  16. 'gatewayUrl' => "https://openapi.alipay.com/gateway.do",
  17. //支付宝公钥,查看地址:https://openhome.alipay.com/platform/keyManage.htm 对应APPID下的支付宝公钥。
  18. 'alipay_public_key' => "",
  19. );