php后台
文章平均质量分 86
denglinqings
没有目标的人都只在帮有目标的人完成目标
展开
-
php支付宝支付,退款,回调函数
/** * 支付宝支付 */ public function appAlipay(){ // 时间戳 $timeStamp = strval(time()); $totalFee = 1; // 支付结果显示文字 $serial_number = date("Ymdhis") . mt_rand(10, 99); $aop = new \原创 2017-09-12 17:29:22 · 9804 阅读 · 4 评论 -
php微信公众号支付,退款,回调函数
/** * 统一下单 * @param unknown $openid * @return boolean|string[]|unknown[] */ public function weinXinPay($openid) { $utils=new Util(); $curl=new Curl(); $notify_url="http://www.weixin.qq.com/wxpay/pay.php"原创 2017-09-13 17:03:30 · 2314 阅读 · 0 评论 -
php 编码中文乱码转换
$content="你好世界"; $content=urlencode($content); $content=urldecode(json_encode($content)); var_dump($content); ...原创 2018-08-01 11:48:35 · 2471 阅读 · 0 评论