VBScript [==] 関数

a が b に等しい時に TRUE。


Function [==](ByVal a, ByVal b)

    [==] = false

    Dim tmp_a,tmp_b
    Dim key

    If (isArray(a) or isArray(b)) or (isObject(a) or isObject(b)) Then

        If isObject(a) and isObject(b) Then
            If a.count <> b.count Then Exit Function

            tmp_a = a.keys : tmp_b = b.keys
            If Not [==](tmp_a,tmp_b) Then Exit Function

            tmp_a = a.Items : tmp_b = b.Items
            If Not [==](tmp_a,tmp_b) Then Exit Function
            [==] = true
        End If

        If isArray(a) and isArray(b) Then
            If uBound(a) <> uBound(b) Then Exit Function

            For key = 0 to uBound(a)
                If Not [==](a(key),b(key) ) Then Exit Function
            Next

            [==] = true
        End If

    Else
        If isNull(a) Then a = "
        If isNull(b) Then b = "

        [==] = (Cstr(a) = Cstr(b))
    End If

End Function

引数

a = mixed 値
b = mixed 比較する値

戻り値

aとbが等しい場合にTRUE を、等しくない場合に FALSE を返します。

処理

・左辺と右辺を比較します。型は厳密にチェックしません。

その他の PHP language 関数