-
Notifications
You must be signed in to change notification settings - Fork 2
REQ_PUT
Jurek Muszyński edited this page Mar 28, 2024
·
2 revisions
Answers whether request method is PUT.
Returns true if request method is PUT
, otherwise false.
if ( URI("api/v1/customer") )
{
if ( REQ_GET )
customer_get();
else if ( REQ_POST )
customer_add();
else if ( REQ_PUT )
customer_update();
else if ( REQ_DELETE )
customer_delete();
else /* method not allowed */
RES_STATUS(405);
}