Jump to content
  • 0

call_user_func


kilogram
 Share

Question

Вот попробовал использовать эту функцию


<html><body>
<?php
function privet($a,${
echo $a,' ',$b;
}
call_user_func('privet',5,8);
?>
</body></html>

тоже самое можно написать и так без неё,даже короче выходит:


<html><body>
<?php
function privet($a,${
echo $a,' ',$b;
}
privet(5,8);
?>
</body></html>

Зачем тогда она?

  • Like 1
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Если она вам не нужна, не значит, что она не нужна вообще.

Например, ее можно использовать в рекурсивных функциях.

function Factorial($i=1) {
return($i==1?1:$i*call_user_func(__FUNCTION__,$i-1));
}

переименовав функцию Factorial в что-либо иное, ошибок не возникнет, в отличии от традиционного кода

function Factorial($i=1) {
return($i==1?1:$i*Factorial($i-1));
}

Link to comment
Share on other sites

  • 0

Можно делать вот так

<?php
function a()
{
echo "func a\n";
}

function b()
{
echo "func b\n";
}

call_user_func(rand(1,2) > 1 ? 'a' : 'b');

Или вообще вот так

<?php
function a1()
{
echo "func a1\n";
}
function a2()
{
echo "func a2\n";
}
function a3()
{
echo "func a3\n";
}
function a4()
{
echo "func a4\n";
}
function a5()
{
echo "func a5\n";
}

call_user_func('a'.rand(1,5));

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy