php绑定变量到旧PHP中的函数范围

时间:2011-04-03 22:09:50

标签: php scope bind

我想将一个变量绑定到一个函数的作用域,我可以在php中使用PHP 5.3之后使用'use'关键字,但是如何在版本中使用等效的< PHP 5.3?

  test_use_keyword();
  function test_use_keyword(){
    $test =2;
    $res=array_map(
      function($el) use ($test){
        return $el * $test;
      }, 
      array(3)
    );
    print_r($res); 
  }

2 个答案:

答案 0 :(得分:1)

您可以使用全局变量,但应始终尽可能避免使用全局变量。作为一个建议,不知道,你想用这个解决什么

class Xy ( {
  private $test;
  public function __construct ($test) {
    $this->test = $test;
  }
  public function call ($el) {
    return $el * $this->test;
  }
}

print_r(array_map(array(new Xy(2), 'call'), array(3));

也可能是好老羊圈

$test = 2;
$a = create_function ('$el', 'return $el * ' . $test . ';');
print_r (array_map($a, array(3)));

答案 1 :(得分:0)

通常通过全局,严重。虽然可以使用黑客来模仿功能,例如partial functions in php。摘自文章:

function partial()
{
  if(!class_exists('partial'))
  {
    class partial{
        var $values = array();
        var $func;

        function partial($func, $args)
        {
            $this->values = $args;
            $this->func = $func;
        }

        function method()
        {
            $args = func_get_args();
            return call_user_func_array($this->func, array_merge($args, $this->values));
        }
    }
  }
  //assume $0 is funcname, $1-$x is partial values
  $args = func_get_args();   
  $func = $args[0];
  $p = new partial($func, array_slice($args,1));
  return array($p, 'method');
}

只有在那之后你才能拥有类似的东西。

function multiply_by($base, $value) {
  return $base * $value;
}

// ...
$res = array_map(partial("multiply_by", $test), array(3));

不......值得......它。