1
0
Fork 0
mirror of synced 2024-09-08 05:42:15 +12:00
appwrite/tests/resources/functions/php-cookie/index.php

6 lines
111 B
PHP
Raw Normal View History

2023-10-27 21:26:46 +13:00
<?php
return function ($context) {
return $context->res->send($context->req->headers['cookie'] ?? '');
};