(Yaf >=3.2.0)
Yaf_Controller_Abstract::getName — Get controller name
Returns the name of the controller.
У цієї функції немає параметрів.
Приклад #1 Yaf_Controller_Abstract::getName() example
<?php
class ProductController extends Yaf_Controller_Abstract
{
public function indexAction() {
// the controller name, without the "Controller" suffix
var_dump($this->getName());
}
}
?>Поданий вище приклад виведе щось схоже на:
string(7) "Product"