PHP 8.6.0 Beta 3 is available for testing

Yaf_View_Simple::get

(Yaf >=1.0.0)

Yaf_View_Simple::getGet an assigned variable

Опис

public function Yaf_View_Simple::get(string $name = NULL): mixed

Gets a variable previously assigned to the view. When called without an argument, all assigned variables are returned.

Параметри

name

The name of the variable to retrieve, or omitted/null to retrieve all assigned variables.

Значення, що повертаються

The value assigned under name, or null if there is no variable with that name. When called without an argument, an array of all assigned variables is returned.

Приклади

Приклад #1 Yaf_View_Simple::get() example

<?php
class IndexController extends Yaf_Controller_Abstract
{
    public function indexAction()
    {
        $view = $this->getView();
        $view->assign("foo", "bar");

        var_dump($view->get("foo"));
        var_dump($view->get()); // all assigned variables
    }
}
?>

Поданий вище приклад виведе щось схоже на:

string(3) "bar"
array(1) {
  ["foo"]=>
  string(3) "bar"
}

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top