当前位置:Gxlcms > PHP教程 > PHP实现小米3有货检测后发邮件

PHP实现小米3有货检测后发邮件

时间:2021-07-01 10:21:17 帮助过:18人阅读

今天想买小米3电信版,但是每次发货都被抢完了,于是弄了个简单的检测有货。

然后今天成功抢到了小米3白色电信版。

里面的数组对于不同的版本。我只要电信版的,所以就写了简单的3个判断

  1. $curl = curl_init();
  2. curl_setopt($curl, CURLOPT_URL, "http://www.mi.com/buyphone/mi3");
  3. curl_setopt($curl, CURLOPT_HEADER, 0);
  4. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  5. $data = curl_exec($curl);
  6. curl_close($curl);
  7. preg_match_all("/isLack:(.*),/",$data,$out);
  8. if($out[1][24]=='false'){
  9. mail("admin@qq.com","小米3黑色电信版有货了","购买地址 http://order.mi.com/event/selectPacket/goodsid/2140800022");
  10. }else{
  11. echo "Wait";
  12. }
  13. if($out[1][23]=='false'){
  14. mail("admin@qq.com","小米3白色电信版有货了","购买地址 http://order.mi.com/event/selectPacket/goodsid/2141000021");
  15. }else{
  16. echo "Wait";
  17. }
  18. if($out[1][25]=='false'){
  19. echo "Buy";
  20. mail("admin@qq.com","小米3银色电信版有货了","购买地址 http://order.mi.com/event/selectPacket/goodsid/2141300016");
  21. }else{
  22. echo "Wait";
  23. }

人气教程排行