(Yaf >=1.0.0)
Yaf_Request_Abstract::getControllerName — Retrieve the controller name
Retrieve the controller name
Bu işlevin bağımsız değişkeni yoktur.
The controller name, or null if not set.
Örnek 1 Yaf_Request_Abstract::getControllerName() example
<?php
class ProductController extends Yaf_Controller_Abstract
{
public function viewAction()
{
// Assuming the request is /product/view/id/17
var_dump($this->getRequest()->getControllerName());
}
}
?>Yukarıdaki örnek şuna benzer bir çıktı üretir:
string(7) "Product"