2013-10-10 3 views
4

무제한의 인수를 취하는 기존 함수를 감싸고 싶습니다. 예. 다음은 기존 함수입니다.무제한의 인수를 취하는 함수를 래핑하는 방법

function T() 
{ 
    $args = func_num_args(); 
    // Do stuff with arguments. 
} 

이제 예를 들어 포장하고 싶습니다.

/* 
* This function shall also take unlimited arguments, 
* and just pass them on to T(). 
*/ 
function myT() 
{ 
    // TODO: Take all arguments and pass them on to T(). 
    $result = T(); 

    // Do stuff with the result of T(). 
} 

그러나, 나는 myT()T()에게 무제한 인수를 전달하는 방법을 알아낼 수 없습니다.

답변