PHP 8.4.26 Released!

Yaf_Dispatcher::disableView

(Yaf >=1.0.0)

Yaf_Dispatcher::disableView — Disable view rendering

Açıklama

public function Yaf_Dispatcher::disableView(): ?Yaf_Dispatcher

Turn off view rendering. This is typically used for actions that generate their own output, such as actions returning JSON data.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Returns the Yaf_Dispatcher object itself on success, or null if the application is not initialized.

Örnekler

Örnek 1 Yaf_Dispatcher::disableView() example

<?php
$app = new Yaf_Application(dirname(__FILE__) . "/conf/application.ini");

// Turn off view rendering globally, every action is expected to produce
// its output itself (e.g. a JSON API service).
Yaf_Dispatcher::getInstance()->disableView();

$app->run();
?>

Ayrıca Bakınız

+add a note

User Contributed Notes

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