Yaf_Request_Abstract::getParam

(Yaf >=1.0.0)

Yaf_Request_Abstract::getParamThe getParam purpose

Опис

public void Yaf_Request_Abstract::getParam ( string $name [, string $default ] )

Увага

This function is currently not documented; only its argument list is available.

Параметри

name

default

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

add a note add a note

User Contributed Notes 1 note

up
-1
yaqi dot wang at fengjr dot com
5 years ago
<?php
$id
= $this->getRequest()->getParam("id",'');
echo
'<pre>';
var_dump($id); //1
?>
To Top