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.
 
 
 
 
 

24 lines
624 B

  1. <?php
  2. // ��ʼ��һ�� cURL ����
  3. $curl = curl_init();
  4. // ��������Ҫץȡ��URL
  5. curl_setopt($curl, CURLOPT_URL, 'http://xmwx.zhizhuchuxing.cn/wechat/WxPay/realpay/test.php');
  6. // ����header
  7. curl_setopt($curl, CURLOPT_HEADER, 1);
  8. // ����cURL ������Ҫ�������浽�ַ����л����������Ļ�ϡ�
  9. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  10. // ����cURL��������ҳ
  11. $data = curl_exec($curl);
  12. // �ر�URL����
  13. curl_close($curl);
  14. // ��ʾ��õ�����
  15. var_dump($data);
  16. ?>