SmsModel::ihuyi PHP 메소드

ihuyi() 보호된 메소드

互亿无线平台校验
저자: Medz Seven ([email protected])
protected ihuyi ( string $data ) : boolean
$data string 数据
리턴 boolean
    protected function ihuyi($data)
    {
        $data = simplexml_load_string($data);
        $data = json_encode($data);
        $data = json_decode($data, false);
        $this->setMessage($data->msg);
        if (intval($data->code) == 2) {
            return true;
        }
        return false;
    }