zoukankan      html  css  js  c++  java
  • php https链接

    1.安装soap扩展

    2.安装openssL

    3.代码执行

    function  issure($sn){//通过soap链接接口  进行确认是否是正确的sn码
        try{
            $client = new SoapClient("https://112.122.122.22/gethtcpro.asmx?wsdl",array('soap_version'=> SOAP_1_2,"trace"=>true,"exceptions"=>false,'ssl_method'=>3));

            $sn = $client->getstatusBysn(array('sn'=>$sn));
            $pd=0;
            if($sn->getstatusBysnResult  === true){
                $pd=1;
            }else if($sn->getstatusBysnResult  === false){
                $pd=0;
            }else{
                $pd=0;
    //            echo "未知".$sn->getstatusBysnResult;
            }
        }catch (SoapFault $e){
            $pd=0;
    //        echo "未知".$sn->getstatusBysnResult;
        }
        return $pd;
    }

  • 相关阅读:
    css
    团队介绍
    day4
    线段树懒标记
    P2014选课
    P2015
    扩展欧几里得(exgcd)求解不定方程/求逆元
    transform和tolower
    快读
    bzoj2118
  • 原文地址:https://www.cnblogs.com/myphper/p/3725069.html
Copyright © 2011-2022 走看看