Problem bir işlev parametreleri ekleme

2 Cevap php

Tamam, ben şöyle denir bir işlev içine parametreleri yerleştirmek çalışıyorum:

$parameters['function']($parameters['params']);

Burada fonksiyon ve ben bunun içine yerleştirilmesi gereken parametreler olduğunu:

$parameters['function'] = 'test_error';
$parameters['params'] = array(0 => $txt['sometext'], 1 => 'critical', 2 => true);

Test_error fonksiyonu 3 parametre alır:

  1. Çıkış hata
  2. Hata türü ('genel', vs vs, 'kritik') bir dize değeri içinde kaydetti.
  3. Bu yankılandı edilip edilmeyeceği olsun.

Here is the output I get: Here is a test error.ArraycriticalArray1

Ben bu fonksiyon mükemmel çalıştığını biliyorum, ama bana sadece ondan döndü 1 parametresini verir. Ben yanlış burada ne yapıyorum $parameters['params']?

EDIT: İşte fonksiyonudur:

function test_error($type = 'error', $error_type = 'general', $echo = true)
{
    global $txt;

    // Build an array of all possible types.
    $valid_types = array(
        'not_installed' => $type == 'not_installed' ? 1 : 0,
        'not_allowed' => $type == 'not_allowed' ? 1 : 0,
        'no_language' => $type == 'no_language' ? 1 : 0,
        'query_error' => $type == 'query_error' ? 1 : 0,
        'empty' => $type == 'empty' ? 1 : 0,
        'error' => $type == 'error' ? 1 : 0,
    );

    $error_html = $error_type == 'critical' ? array('<p class="error">', '</p>') : array('', '');
    $error_string = !empty($valid_types[$type]) ? $txt['dp_module_' . $type] : $type;

    // Should it be echoed?
    if ($echo)
        echo implode($error_string, $error_html);

    // Don't need this anymore!
    unset($valid_types);
}

2 Cevap

Aşağıya bakın.

http://www.php.net/manual/en/function.call-user-func-array.php

<?php
function foobar($arg, $arg2) {
    echo __FUNCTION__, " got $arg and $arg2\n";
}
class foo {
    function bar($arg, $arg2) {
        echo __METHOD__, " got $arg and $arg2\n";
    }
}


// Call the foobar() function with 2 arguments
call_user_func_array("foobar", array("one", "two"));

// Call the $foo->bar() method with 2 arguments
$foo = new foo;
call_user_func_array(array($foo, "bar"), array("three", "four"));
?>