0

function_exists()PHPに相当する関数がASPに存在しますか?

に相当するものはcall_user_func()どうですか?

4

1 に答える 1

2

あなたはトリックでこれを行うことができます:

public function getFunction(functionName)
    set getFunction = nothing
    on error resume next
    set getFunction = getRef(functionName)
    on error goto 0
end function

dim func : set func = getFunction("myFunction")
if not func is nothing then
    ' call "myFunction"
    func
else
    ' "myFunction" does not exist
end if
于 2013-01-24T10:06:50.567 に答える