/**
3 * PHP Crul库 模拟Post提交至支付宝网关
4 * 如果使用Crul 你需要改一改你的php.ini文件的设置,找到php_curl.dll去掉前面的";"就行了
5 * 返回 $data
6 */
7 function post($gateway,$req_data) {
8 $ch = curl_init();
9 curl_setopt($ch, CURLOPT_URL, $gateway); //配置网关地址
10 curl_setopt($ch, CURLOPT_HEADER, 0); //过滤
HTTP头
11 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
12 curl_setopt($ch, CURLOPT_POST, 1); //设置post提交
13 curl_setopt($ch, CURLOPT_POSTFIELDS, $req_data); //post传输数据
14 $data = curl_exec($ch);
15 curl_close($ch);
16 return $data;
17 }
|
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号