답변:
PHP 5.3.0 이상을 사용하는 경우 가능합니다.
설명서의 익명 기능 을 참조하십시오 .
귀하의 경우 다음 exampleMethod
과 같이 정의 합니다.
function exampleMethod($anonFunc) {
//execute anonymous function
$anonFunc();
}
create_function
create_function()
. 함수를 코드 문자열로 전달해야하므로 똑같지는 않습니다 eval()
. 이상적이지는 않지만 사용할 수 있습니다.
exampleMethod(strpos);
다른 것에 추가하기 위해 함수 이름을 전달할 수 있습니다.
function someFunc($a)
{
echo $a;
}
function callFunc($name)
{
$name('funky!');
}
callFunc('someFunc');
이것은 PHP4에서 작동합니다.
PHP 버전> = 5.3.0
function test($test_param, $my_function) {
return $my_function($test_param);
}
test("param", function($param) {
echo $param;
}); //will echo "param"
$obj = new stdClass();
$obj->test = function ($test_param, $my_function) {
return $my_function($test_param);
};
$test = $obj->test;
$test("param", function($param) {
echo $param;
});
class obj{
public function test($test_param, $my_function) {
return $my_function($test_param);
}
}
$obj = new obj();
$obj->test("param", function($param) {
echo $param;
});
class obj {
public static function test($test_param, $my_function) {
return $my_function($test_param);
}
}
obj::test("param", function($param) {
echo $param;
});
PHP 5.3에서 테스트 됨
여기에서 알 수 있듯이 익명 함수가 도움이 될 수 있습니다 : http://php.net/manual/en/functions.anonymous.php
당신이 아마도 필요로 할 것이고 그것은 즉시 생성 된 함수 안에 그것을 래핑하지 않고 함수를 전달하는 방법 전에는 언급되지 않았습니다 . 나중에 보게 되겠지만, 문자열로 작성된 함수 이름을 매개 변수로 전달하고 "호출 성"을 확인한 다음 호출해야합니다.
확인할 기능 :
if( is_callable( $string_function_name ) ){
/*perform the call*/
}
그런 다음이를 호출하려면 다음 코드를 사용합니다 (매개 변수도 필요하면 배열에 배치). http://php.net/manual/en/function.call-user-func.php
call_user_func_array( "string_holding_the_name_of_your_function", $arrayOfParameters );
다음과 같이 (비슷하고 매개 변수가없는 방식으로) :
function funToBeCalled(){
print("----------------------i'm here");
}
function wrapCaller($fun){
if( is_callable($fun)){
print("called");
call_user_func($fun);
}else{
print($fun." not called");
}
}
wrapCaller("funToBeCalled");
wrapCaller("cannot call me");
비슷한 작업을 수행하는 방법을 설명하는 클래스는 다음과 같습니다.
<?php
class HolderValuesOrFunctionsAsString{
private $functions = array();
private $vars = array();
function __set($name,$data){
if(is_callable($data))
$this->functions[$name] = $data;
else
$this->vars[$name] = $data;
}
function __get($name){
$t = $this->vars[$name];
if(isset($t))
return $t;
else{
$t = $this->$functions[$name];
if( isset($t))
return $t;
}
}
function __call($method,$args=null){
$fun = $this->functions[$method];
if(isset($fun)){
call_user_func_array($fun,$args);
} else {
// error out
print("ERROR: Funciton not found: ". $method);
}
}
}
?>
및 사용 예
<?php
/*create a sample function*/
function sayHello($some = "all"){
?>
<br>hello to <?=$some?><br>
<?php
}
$obj = new HolderValuesOrFunctionsAsString;
/*do the assignement*/
$obj->justPrintSomething = 'sayHello'; /*note that the given
"sayHello" it's a string ! */
/*now call it*/
$obj->justPrintSomething(); /*will print: "hello to all" and
a break-line, for html purpose*/
/*if the string assigned is not denoting a defined method
, it's treat as a simple value*/
$obj->justPrintSomething = 'thisFunctionJustNotExistsLOL';
echo $obj->justPrintSomething; /*what do you expect to print?
just that string*/
/*N.B.: "justPrintSomething" is treated as a variable now!
as the __set 's override specify"*/
/*after the assignement, the what is the function's destiny assigned before ? It still works, because it's held on a different array*/
$obj->justPrintSomething("Jack Sparrow");
/*You can use that "variable", ie "justPrintSomething", in both ways !! so you can call "justPrintSomething" passing itself as a parameter*/
$obj->justPrintSomething( $obj->justPrintSomething );
/*prints: "hello to thisFunctionJustNotExistsLOL" and a break-line*/
/*in fact, "justPrintSomething" it's a name used to identify both
a value (into the dictionary of values) or a function-name
(into the dictionary of functions)*/
?>