将一个函数中的变量值传递给同一类中的另一个函数

发布于 2024-11-14 08:47:24 字数 662 浏览 0 评论 0原文

我有一个类 Block_Model (实际上是 Kohana 框架中的一个模型),有 2 个方法 input()output()

class Block_Model extends ORM {
    function input($arg) {
        //...
    }
    function output() {
        //...
    }
    //...
}

input 方法是从一个名为 Home_Controller 的控制器内编写的函数调用的,并将一个参数传递给 input 方法。

class Home_Controller extends Controller {
    function doSomething() {
        $block = new Block_Model();
        //...
        $block->input($val);
        //...
    }
}

如何使传递给 input() 的参数可以在方法 output() 中访问?

I have a class Block_Model (actually a model in Kohana framework) with 2 methods input()and output().

class Block_Model extends ORM {
    function input($arg) {
        //...
    }
    function output() {
        //...
    }
    //...
}

The method input is called from a function written inside a controller called Home_Controller and it passes an argument to the method input.

class Home_Controller extends Controller {
    function doSomething() {
        $block = new Block_Model();
        //...
        $block->input($val);
        //...
    }
}

How can I make the argument passed to input() be accessible in the method output()?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

篱下浅笙歌 2024-11-21 08:47:25

你需要私有财产:

class Something{
   private $_variable = "";

   function input( $data ){
      $this->_variable = $data;
      //do the rest of function
   }

   function output(  ){
      //get previously set data
      echo $this->_variable;
   }

}

You'll need private property:

class Something{
   private $_variable = "";

   function input( $data ){
      $this->_variable = $data;
      //do the rest of function
   }

   function output(  ){
      //get previously set data
      echo $this->_variable;
   }

}
半葬歌 2024-11-21 08:47:25

这与@silent的答案类似,但你可以结合setter &一种方法中的吸气剂。

protected $_foo;

public function foo($val = NULL)
{
    if ($val === NULL)
    {
        // its a getter!
        return $this->_foo;
    }

    // its a setter 
    $this->_foo = $val;
    // return current object, so it becomes a chainable method
    return $this;
}

现在您可以使用 $value = $object->foo();$object->foo($value)->do_something_else();

This is similar to @silent's answer, but you can combine setter & getter in one method.

protected $_foo;

public function foo($val = NULL)
{
    if ($val === NULL)
    {
        // its a getter!
        return $this->_foo;
    }

    // its a setter 
    $this->_foo = $val;
    // return current object, so it becomes a chainable method
    return $this;
}

Now you can use $value = $object->foo(); and $object->foo($value)->do_something_else();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文