PHP 8.6.0 Beta 2 available for testing

Yaf_Request_Abstract::isPatch

(Yaf >=3.0.5)

Yaf_Request_Abstract::isPatchDetermine if the request is a PATCH request

Açıklama

public function Yaf_Request_Abstract::isPatch(): bool

Checks whether the request was sent with the PATCH method.

Bağımsız Değişkenler

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

Dönen Değerler

Returns true if the request method is PATCH, false otherwise.

Örnekler

Örnek 1 Yaf_Request_Abstract::isPatch() example

<?php
class ProfileController extends Yaf_Controller_Abstract
{
    public function updateAction()
    {
        // Assuming the request was sent with PATCH /profile/update
        var_dump($this->getRequest()->isPatch());
    }
}
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

bool(true)

Ayrıca Bakınız

add a note

User Contributed Notes

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