SmsModel::auto PHP Method

auto() protected method

自适应校验发送是否成功
Author: Medz Seven ([email protected])
protected auto ( string $data ) : boolean
$data string 数据;
return boolean
    protected function auto($data)
    {
        $data = strtolower($data);
        return false !== strstr($data, $this->resultCode);
    }